Monobjc.AppKit.NSCellStateValueExtensions.ToBool C# (CSharp) Method

ToBool() public static method

Convert a NSCellStateValue value to a boolean.
public static ToBool ( this value ) : bool
value this
return bool
        public static bool ToBool(this NSCellStateValue value)
        {
            return (value != NSCellStateValue.NSOffState);
        }
NSCellStateValueExtensions