B9PartSwitch.ObjectExtensions.IsNotNull C# (CSharp) Method

IsNotNull() public static method

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