fromStr() public static method

public static fromStr ( string s ) : Boolean
s string
return Boolean
Example #1
0
 public static Boolean toBool(string self, bool check)
 {
     return(FanBool.fromStr(self, check));
 }
Example #2
0
        //////////////////////////////////////////////////////////////////////////
        // Conversion
        //////////////////////////////////////////////////////////////////////////

        public static Boolean toBool(string self)
        {
            return(FanBool.fromStr(self, true));
        }