+ int FindI(string Name,bool Default = 0) {return FindI(Name.c_str(),Default);};
+ bool FindB(const char *Name,bool Default = false);
+ bool FindB(string Name,bool Default = false) {return FindB(Name.c_str(),Default);};
+
+ inline void Set(string Name,string Value) {Set(Name.c_str(),Value);};