I have IEnumerable<object> Value. Can I get model type and then declare same type List?
for example i got IEnumerable then want to declare List<cars> lst = new List<cars>
Thanks
|
I have for example i got IEnumerable then want to declare Thanks |
||||
| show 5 more comments |
|
No. Template types are determined at compile-time. However, you could try declaring it as
You wouldn't get true type safety but you could access the properties in your form without using reflection:
|
|||
|
|
Value.ToList()(a LINQ extension method). – Tim S. Jun 10 '12 at 13:05IEnumerable<object>, or do you have anIEnumerable<T>whereTmay be any type? – Douglas Jun 10 '12 at 13:12