コード例 #1
0
 public static bool Value(this Boolen boolen, bool defaultValue = true)
 {
     if (boolen == null)
     {
         return(defaultValue);
     }
     return(boolen.value);
 }