How to assign Null value to Var?
Rahul Chavan
var str = (string)null; str = "Hello";
C# compiler does not allow assignment of null value with var .
why someone would want to assign null to var?