System.ObjectExtentions.IsNotNull C# (CSharp) Method

IsNotNull() public static method

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