コンボボックスで選択されている値の取得


コンボボックスで選択されている項目名は、Textプロパティ
 string s=comboBox1.Text;

インデックスはSelectedIndex
 int i=comboBox1.SelectedIndex;