Search Results

0
votes

“CLR detected an invalid program.” when calling Generic Methods

Updated due to me misinterpreting the code example. Try wrapping the delegate with a MethodInvoker: …
1
vote

Why IEnumerable<T> inherits from IEnumerable?

This is so that it will work with classes that do not support generics. Additionally, .NET generics don't let you do things like cast IList<long> as IList<int>, so non generic versions of int …
0
votes

ServiceProvider, cache etc. done with generics without cast

There is not a good way to do this without casting. Don't get hung up on the casting cost. Focus on things that actually impact performance... for example, hashing isn't free to begin with. You sho …
1
vote

foreach vs someList.Foreach(){}

Behind the scenes, the anonymous delegate gets turned into an actual method so you could have some overhead with the second choice if the compiler didn't choose to inline the function. Additionally …