Tuple を作成し、コンボ ボックスに追加します。
comboBox1.Items.Add(new Tuple<string, string>(service, method));
今、アイテムをタプルとしてキャストしたいのですが、これはうまくいきません:
Tuple<string, string> selectedTuple =
Tuple<string, string>(comboBox1.SelectedItem);
どうすればこれを達成できますか?