Possible Duplicate:
What is this new[] a shorthand for?
Is there any difference between
var strings = new string[] { "hello", "world" };
and
var strings2 = new[] { "hello", "world" };
Is there any difference between
and
|
|||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
In this case, no difference, as |
|||||||||||||||||||
|
|
No difference. The second one is a syntactic-sugar called "Implicitly typed arrays", and both the expressions return an array of strings. When you don't specify the type of the array, it is inferred from the types of the elements used to initialize the array. Considering an implicitly typed array expression like this:
and the set of all the types of the elements in the initialization being:
to allow the inference (i.e. no compiler error) it must be possible for all the types So, for example, given the following classes:
This code compiles:
while the following does not:
since in the first case all the 3 types can be implicitly cast to type This feature has been introduced with C# 3.0 along with anonymous types and it makes instantiation of arrays of the latter easier. For instance, this would be really hard to obtain without implicitly typed arrays:
|
|||||||||||
|
|
In this case, there is no difference. Because of
creates a
Second one is just called If we go one step further, they have the same |
|||||||||||||
|
|
None, the compile interprets it as It's just like using |
|||
|
|
|
new[] creates an implicitly typed array in which the type is infered from the elements. while the other approach creates an array of string. |
|||||||||||
|
|
There is no difference. In the 2nd case, the C# compiler is smart enough to infer the type of the array, since it sees that the values that are used to initialize the array, are of type string. |
|||
|
|