Вопрос

I use the built-in Settings file to store the state of controls on form.

I use System.collections.Specialized.StringCollection and would like to use a list of int values.

Is there a way to do so?

Это было полезно?

Решение

There is no List<T> in the settings, so you have to convert it yourself:

var strings = Properties.Settings.Default.Strings; // your StringCollection 
List<int> ints = strings.Cast<string>().Select(str => int.Parse(str)).ToList();
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top