C# Converter difficulties
- by Petr
Hi,
I am trying to fill object[] with List<string> but I cannot figure out how to use ConvertAll. MSDN did not help me.
At first I tried to create an instance of Converter but it looks like it expects delegate?
Converter<string, object> conv = new Converter<string, object>(??); //why delegate?
this.comboBox1.Items.AddRange(Form1.AnimalType.ConvertAll<object>(conv));
Thanks :)