Pertanyaan yang diberi tag compiler-bug

129
(ini == null) dalam C #!

Karena bug yang diperbaiki di C # 4, program berikut dicetak true. (Cobalah di LINQPad) void Main() { new Derived(); } class Base { public Base(Func<string> valueMaker) { Console.WriteLine(valueMaker()); } } class Derived : Base { string CheckNull() { return "Am I null? " + (this ==...