>>557
んじゃぁSystem.Collections.GenericのDictionary<Key,Value>使うと良い、ただ初期化で全部用意しないと行けないのは本当
Dictionary<string,System.Action > actionMap = new Dictionary<string,System.Action>();
//init
actionMap["A"] = someVoidFunc1;
actionMap["B"] = someVoidFunc2;
...
void someVoidFunc1() { }
void someVoidFunc2() {}

//使う時
System.Action act = actionMap[xxx];
act();