Tagged Questions
6
votes
2answers
168 views
Why can't I do this with implicit types in C#?
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...
2
votes
3answers
116 views
C# Compiler feature or am I loosing my mind?
After rewriting my event invocation function to handle the events and their arguments generically, I started going over my code (to match the change), and I noticed that the compiler implicitly made ...