public void WriteValue(string Section, string Key, string Value) { if (Value != null) { if (Value.StartsWith("\"") && Value.EndsWith("\"")) Value = "\"" + Value + "\""; } WritePrivateProfileString(Section, Key, Value, this.path); } So just checking should I just remove this code that adds the extra quotes there?