我正在编写一个游戏AI引擎,我想在一个数组中存储一些lambda表达式/委托(多个参数列表)。
类似的东西:
_events.Add( (delegate() { Debug.Log("OHAI!"); }) );
_events.Add( (delegate() { DoSomethingFancy(this, 2, "dsad"); }) );
C#中有可能吗?
答案 0 :(得分:7)
您可以改为List<Action>
:
List<Action> _events = new List<Action>();
_events.Add( () => Debug.Log("OHAI!")); //for only a single statement
_events.Add( () =>
{
DoSomethingFancy(this, 2, "dsad");
//other statements
});
然后调用单个项目:
_events[0]();
答案 1 :(得分:5)
您可以使用System.Action。
var myactions = new List<Action>();
myactions .Add(new Action(() => { Console.WriteLine("Action 1"); })
myactions .Add(new Action(() => { Console.WriteLine("Action 2"); })
foreach (var action in myactions)
action();