Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can you list all possible array init. syntax that is possible with c#. It gets really confusing to know when it is an array initializer or a seperate declaration.

Note: I've searched the MSDN, google it but there isn't an all-in-one guide.

Edit: I'm using .NET 3.5 + c#

share|improve this question
2  
For which version of C#, .NET Framework? – Darin Dimitrov Apr 15 '11 at 14:28

2 Answers

up vote 19 down vote accepted

These are the current declaration and initialization methods for a simple array.

string[] array = new string[2]; // creates array of length 2, default values
string[] array = new string[] { "A", "B" }; // creates populated array of length 2
string[] array = { "A" , "B" }; // creates populated array of length 2

Note that other techniques of obtaining arrays exist, such as the Linq ToArray() extensions on IEnumerable<T>.

Also note that in the declarations above, the first two could replace the string[] on the left with var (C# 3+), as the information on the right is enough to infer the proper type. The third line must be written as displayed, as array initialization syntax alone is not enough to satisfy the compiler's demands. So if you're into the whole brevity thing, the above could be written as

var array = new string[2]; // creates array of length 2, default values
var array = new string[] { "A", "B" }; // creates populated array of length 2
string[] array = { "A" , "B" }; // creates populated array of length 2
share|improve this answer
This is actually what I needed thanks. – Joshua Girard Apr 15 '11 at 14:45
3  
@Joshua, I suggest moving the acceptance tick over to Eric Lippert's answer. His is much more complete and will serve a greater benefit to those with similar questions. – user414076 Apr 15 '11 at 14:52

The array creation syntaxes in C# that are expressions are:

new int[3]
new int[3] { 10, 20, 30 }
new int[] { 10, 20, 30 }
new[] { 10, 20, 30 }

In the first one, the size may be any non-negative integral value and the array elements are initialized to the default values.

In the second one, the size must be a constant and the number of elements given must match. There must be an implicit conversion from the given elements to the given array element type.

In the third one, the elements must be implicitly convertible to the element type, and the size is determined from the number of elements given.

In the fourth one the type of the array element is inferred by computing the best type, if there is one, of all the given elements that have types. All the elements must be implicitly convertible to that type. The size is determined from the number of elements given. This syntax was introduced in C# 3.0.

There is also a syntax which may only be used in a declaration:

int[] x = { 10, 20, 30 };

The elements must be implicitly convertible to the element type. The size is determined from the number of elements given.

there isn't an all-in-one guide

I refer you to C# 4.0 specification, section 7.6.10.4 "Array Creation Expressions".

share|improve this answer
What is the new[] { ... } (or new { ... } for other types) syntax known as? – BoltClock Apr 15 '11 at 14:44
4  
@BoltClock: The first syntax you mention is an "implicitly typed array creation expression". The second is an "anonymous object creation expression". You do not list the other two similar syntaxes; they are "object initializer" and "collection initializer". – Eric Lippert Apr 15 '11 at 14:48
2  
Not exactly C# "syntax", but let's not forget (my personal favorite) Array.CreateInstance(typeof(int), 3)! – Jeffrey L Whitledge Apr 15 '11 at 15:38
1  
@Jeffrey: If we're going down that road,it starts getting silly. E.g., "1,2,3,4".split(','). – Brian Apr 15 '11 at 18:00
1  
Why do some of these require implicit convertability of the array elements to the array type, while others require explicit convertability? – Joren Apr 15 '11 at 19:36
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.