Hi
I have function which returns metastorm List object. I assign to this object list of keyvaluepair objects:
KeyValuePair<string, string>[] objects = new KeyValuePairObjects<string, string>[...];
objects[0] = new KeyValuePair<string, string>("1", "value1");
objects[1] = new KeyValuePair<string, string>("2", "value");
List l = new List(objects);
and now i assign this list to dropdown list options (using creted method promoted to expression builder)
What value should be returned by dropdown (what should be assigned to dropdown variable)?
I'm a bit lost because in my opinion key should be returned, which is in first parameter of KeyValuePair constructor