B9PartSwitch.ObjectExtensions.IsNull C# (CSharp) Method

IsNull() public static method

public static IsNull ( this o ) : bool
o this
return bool
        public static bool IsNull(this object o)
        {
            return (o == null);
        }
ObjectExtensions