var x = new { a = "foobar", b = 42 };
List<x.GetType()> y;
Is there a different way to do what I want to do here?
If there's not, I don't really see all that much point in implicit types...
Is there a different way to do what I want to do here? If there's not, I don't really see all that much point in implicit types...
| |||||
feedback
|
|
However, you can do:
You could also write a simple extension method to create a list generically:
(Pick a different name if you want :) Then:
As Marc shows, it doesn't actually have to be an extension method at all. The only important thing is that the compiler can use type inference to work out the type parameter for the method so that you don't have to try to name the anonymous type. Implicitly typed local variables are useful for a variety of reasons, but they're particularly useful in LINQ so that you can create an ad-hoc projection without creating a whole new type explicitly. | ||||
feedback
|
|
There are ways of doing this with a generic method:
or by creating a list with data and then emptying it... | |||
|
feedback
|