System.ObjectExtentions.IsNotNull C# (CSharp) Méthode

IsNotNull() public static méthode

Check to determine if the object is NOT null
public static IsNotNull ( this foo ) : bool
foo this
Résultat bool
        public static bool IsNotNull(this object foo)
        {
            return !foo.IsNull();
        }