Adf.Core.Extensions.BoolExtensions.Value C# (CSharp) Method

Value() public static method

public static Value ( this boolean ) : bool
boolean this
return bool
        public static bool Value(this bool? boolean)
        {
            return boolean.GetValueOrDefault(false);
        }
BoolExtensions