Ahhh okay, easy fixed then public void WriteValue(string Section, string Key, string Value) { if (Value.StartsWith("\"") && Value.EndsWith("\"")) Value = "\"" + Value + "\""; WritePrivateProfileString(Section, Key, Value, this.path); } Done, I'll send you on the update.