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

IsNull() 공개 정적인 메소드

Check to determine if the object is null
public static IsNull ( this foo ) : bool
foo this
리턴 bool
        public static bool IsNull(this object foo)
        {
            return foo == null || foo == DBNull.Value;
        }