System.ObjectExtension.IsNull C# (CSharp) 메소드

IsNull() 공개 정적인 메소드

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