public bool PutFile(string iniFile) { MOG_Ini temp = new MOG_Ini(); // Load the ini file if (temp.Load(iniFile) == false) { return(false); } PutFile(temp); temp.Close(); return(true); }