public bool LoadIniData(string sAllData) { int iCursor=0; string sLine=""; bool bGood=true; while (RString.ReadLine(out sLine, sAllData, ref iCursor)) { if (!SetOrCreate(sLine)) bGood=false; } return bGood; }