Hello everybody.
In a Windows Forms program i am trying to save a string. Well, the method does not save it.
Please help.
what i've written:
string abc = "abcdefghijklmnopqrs";
Properties.Settings.Default.a_value = abc;
Properties.Settings.Default.Save();
//a_value is a string
Thanks in advance.
bye