BindingList<KeyValuePair<string, string>> properties = new BindingList<KeyValuePair<string, string>>();
Code above stores around 10-30 objects as KeyValuePair<string, string>
I need to somehow select an element let’s say with key “id”
How do I go about that?
1 Answer