Tagged Questions

42
votes
6answers
5k views

(this == null) in C#!

Due to a bug that was fixed in C# 4, the following program prints true. (Try it in LINQPad) void Main() { new Derived(); } class Base { public Base(Func<string> valueMaker) { ...
25
votes
3answers
2k views

'Delegate 'System.Action' does not take 0 arguments.' Is this a C# compiler bug (lambdas + two projects)?

Consider the code below. Looks like perfectly valid C# code right? //Project B using System; public delegate void ActionSurrogate(Action addEvent); //public delegate void ActionSurrogate2(); // Using ...
22
votes
2answers
426 views

C# compiler bug? Object initializer syntax used for write-only property in Expression makes csc crash

You may consider this a bug report, however I'm curious if I am terribly wrong here, or if there is an explanation from Eric or someone else at Microsoft. Update This is now posted as a bug on ...
13
votes
4answers
312 views

Why does this generics scenario cause a TypeLoadException?

This got a bit long-winded, so here's the quick version: Why does this cause a runtime TypeLoadException? (And should the compiler prevent me from doing it?) interface I { void Foo<T>(); } ...
12
votes
2answers
339 views

Is this a bug in dynamic?

When implementing dynamic dispatch using dynamic on a generic class, and the generic type parameter is a private inner class on another class, the runtime binder throws an exception. For example: ...
10
votes
8answers
228 views

C# compiler not recognizing yield return methods as similar?

If I have two yield return methods with the same signature, the compiler does not seem to be recognizing them to be similar. I have two yield return methods like this: public static ...