System.ObjectExtension.IsNull C# (CSharp) Méthode

IsNull() public static méthode

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