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.

Given the following C# code:

var a = new[] {"123", "321", 1}; //no best type found for implicitly typed array

And its counterpart in VB.NET:

Dim a = {"123", "321", 1} 'no errors

It appears that VB.NET is able to correctly infer type of a = Object(), while C# complains until the above is fixed to:

var a = new object[] {"123", "321", 1};

Is there a way to auto-infer type in C# for the above scenario?

EDIT: Interesting observation after playing with different types in a C# sandbox - type is correctly inferred if all elements have common parent in the inheritance tree, and that parent is not an Object, or if elements can be cast into a wider type (without loss of precision, for example Integer -> Double). So both of these would work:

var a = new[] {1, 1.0}; //will infer double[]
var a = new[] {new A(), new B()}; //will infer A[], if B inherits from A

I think this behavior is inconsistent in C#, because all types inherit from Object, so it's not a much different ancestor than any other type. This is probably a by-design, so no point to argue, but if you know the reason, would be interesting to know why.

share|improve this question
Just curious, would you be better off using a labeled object instead of an untyped array? – CookieOfFortune Nov 20 '12 at 22:44
@CookieOfFortune: Sometimes I need to write quick-and-dirty code, mostly for prototyping reasons, often to help other people on SO. Creating an object for this purpose is not feasible. – Neolisk Nov 20 '12 at 23:09
Sorry, I meant an anonymous object: var a = new { Str1 = "123", Str2 = "321", AnInteger = 1 }; – CookieOfFortune Nov 20 '12 at 23:14
@CookieOfFortune: Then you cannot do DataTable.Rows.Add(array);, which would be one of the most common use cases. – Neolisk Nov 20 '12 at 23:44

3 Answers

up vote 9 down vote accepted

No. Implicitly typed arrays in C# require that the type of one of the expressions in the array initializer is of the target type. Basically, the compiler tries to find exactly one element type such that all the other types can be converted to it.

You could cast any of the elements to object of course:

var a = new[] { (object) "123", "321", 1}; 

... but then you might as well just use an explicitly typed array initializer:

var a = new object[] {"123", "321", 1}; 

Or in cases where you really are declaring a variable at the same time:

object[] a = {"123", "321", 1};
share|improve this answer
Fair enough. Thanks for a thorough explanation. – Neolisk Nov 20 '12 at 23:14

No. However, you can make VB behave more like C# by using Option Explicit On, Option Strict On, and Option Infer Off.

Best Practices: Option Infer

share|improve this answer
Can I make C# behave more like VB? – Neolisk Nov 20 '12 at 23:46
2  
+1 @Josh C: I wouldn't say "you can", but "you have to!" @Neolisk: use the the new dynamic keyword dynamic[] k = { "123", "1", 1 }; Now you have a "something" ... – igrimpe Nov 21 '12 at 6:01
+1 Option Explicit must be on! Option Strict should almost always be on. But you might want to leave Option Infer On otherwise you can't use LINQ. – MarkJ Nov 21 '12 at 8:07
@igrimpe: dynamic is interesting. Not exactly the same as Dim k() = {...}, but please post as an answer, so I'll upvote it. – Neolisk Nov 21 '12 at 12:21

In C# you could use dynamic: dynamic[] k = { "1", 2, "3" };

It doesn't mimic VB's behaviour completey, though. dynamic[] k = { "1", "2", "3" }; still gives you an array of object, while in VB you get an array of String.

And of course:

dynamic[] k = { "1", "3", "3" };
int i = k[0].I_do_not_exist();

compiles without problem, but most likely will fail miserably ;)

share|improve this answer
+1 for a nice alternative. – Neolisk Nov 21 '12 at 14:22

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.