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;
        }