/// <summary>
 /// Returns the bool value that was passed in, or false if the value was null
 /// </summary>
 public static bool NullObjectToFalse(this object input)
 {
     return(GeneralHelper.DenullBoolean(input));
 }
Esempio n. 2
0
 /// <summary>
 /// Returns the bool value that was passed in, or false if the value was null
 /// </summary>
 public static bool NullBoolToFalse(this bool?input)
 {
     return(GeneralHelper.DenullBoolean(input));
 }