Exemple #1
0
        public static bool TryParse(string s, out EventBoolean result)
        {
            bool b;
            bool retVal = bool.TryParse(s, out b);

            result = new EventBoolean(b);
            return(retVal);
        }
 public static bool TryParse(string s, out EventBoolean result)
 {
     bool b;
     bool retVal = bool.TryParse(s, out b);
     result = new EventBoolean(b);
     return retVal;
 }