Visual StudioでcomboBox使用時にマップ使う場面があるときに以下のを共有します。
・comboBoxの「items」プロパティに以下のリストを追加するとします。
item1
item2
item3
ここで、マップを定義例は以下です。
//マップの定義
IDictionary<string, int> mapItem = new Dictionary<string, int>();
//マップに値の追加
mapBook.Add("item1", 1);
mapBook.Add("item2", 2);
mapBook.Add("item3", 3);
comboBox選択された値を取得する例です。
string str = comboBox1.SelectedItem.ToString();
comboBox選択されたマップのValueを取得する例です。
decimal itemNo = mapItem[str];