Esempio n. 1
0
 public static bool Value(IQBBoolType bl)
 {
     if (bl == null)
     {
         return(false);
     }
     else
     {
         return(bl.GetValue());
     }
 }
        protected bool ReadBool(IQBBoolType value)
        {
            bool result = true;

            if (value != null)
            {
                result = value.GetValue();
            }

            return(result);
        }
Esempio n. 3
0
 public static bool Value(IQBBoolType bl)
 {
     if (bl == null)
     {
         return false;
     }
     else
     {
         return bl.GetValue();
     }
 }