Fan.Sys.FanBool.fromStr C# (CSharp) Method

fromStr() public static method

public static fromStr ( string s ) : Boolean
s string
return Boolean
        public static Boolean fromStr(string s)
        {
            return fromStr(s, true);
        }

Same methods

FanBool::fromStr ( string s, bool check ) : Boolean

Usage Example

Example #1
0
 public static Boolean toBool(string self, bool check)
 {
     return(FanBool.fromStr(self, check));
 }
All Usage Examples Of Fan.Sys.FanBool::fromStr