System.ObjectExtension.IsNull C# (CSharp) Method

IsNull() public static method

判断一个对象是否为NULL
public static IsNull ( this input ) : bool
input this 判断对象
return bool
        public static bool IsNull(this object input)
        {
            return input == null;
        }
ObjectExtension