int numberint = 0;
List<string> Listshow= new List<string>();
//and this Listshow item =
Listshow.Add("number" + numberint.ToString()); //(my Listshow item == number1,number2,number3,number4 and...number60)
How to save this Listshow in (Properties.Settings.Default
) and re-open the form of this Listshow with its items?
Please can you provide save and load code?