System.ObjectExtentions.IsNotNull C# (CSharp) 메소드

IsNotNull() 공개 정적인 메소드

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