How to make NullFun.Method to write "true" to Console?
Read below for the answer.
public class NullFun { public void Method () { Console.WriteLine(this == null); } }
Read below for the answer.