Is there anything im doing wrong?
void SaveProxies()
{
string[] items = new string[Proxies.Items.Count];
Proxies.Items.CopyTo(items, 0);
string saveValue = string.Join(",", items);
Share_Cash_Downloader_v0._2._9._5.Properties.Settings.Default.Proxies = saveValue;
}
void LoadProxies()
{
string[] items = Share_Cash_Downloader_v0._2._9._5.Properties.Settings.Default.Last.Split(',');
foreach (string str in items)
Proxies.Items.Add(str);
}
I use LoadProxies to load the save, from the settings.
then to save I use SaveProxies, to save to settings.