Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# declare empty string array

Tags:

arrays

string

c#

I need to declare an empty string array and i'm using this code

string[] arr = new String[0](); 

But I get "method name expected" error.

What's wrong?

like image 554
aquanat Avatar asked May 30 '13 10:05

aquanat


People also ask

Bahasa C digunakan untuk apa?

Meskipun C dibuat untuk memprogram sistem dan jaringan komputer namun bahasa ini juga sering digunakan dalam mengembangkan software aplikasi. C juga banyak dipakai oleh berbagai jenis platform sistem operasi dan arsitektur komputer, bahkan terdapat beberepa compiler yang sangat populer telah tersedia.

Apa yang dimaksud dengan huruf C?

C adalah huruf ketiga dalam alfabet Latin. Dalam bahasa Indonesia, huruf ini disebut ce (dibaca [tʃe]).


2 Answers

Try this

string[] arr = new string[] {}; 
like image 56
Atish Dipongkor Avatar answered Sep 18 '22 19:09

Atish Dipongkor


Your syntax is wrong:

string[] arr = new string[]{}; 

or

string[] arr = new string[0]; 
like image 29
Andrei Avatar answered Sep 21 '22 19:09

Andrei