I create my Tuple and add it to a combo box:
comboBox1.Items.Add(new Tuple<string, string>(service, method));
Now I wish to cast the item as a Tuple, but this does not work:
Tuple<string, string> selectedTuple =
Tuple<string, string>(comboBox1.SelectedItem);
How can I accomplish this?