gpt4 book ai didi

c# - 以编程方式触发事件?

转载 作者:太空狗 更新时间:2023-10-29 20:03:51 26 4
gpt4 key购买 nike

如何以编程方式调用此方法?如果我简单地执行 KillZombies(),它会说我没有正确的参数,但是当我只是使用代码时我不知道要指定什么参数...

public static void KillZombies(object source, ElapsedEventArgs e)
{
Zombies.Kill();
}

最佳答案

你试过吗:

KillZombies(null, null);

也许重构你的设计:

public static void KillZombies(object source, ElapsedEventArgs e)
{
//more code specific to this event, logging, whathaveyou.
KillSomeZombies();
}

public static void KillSomeZombies()
{
Zombies.Kill();
}

//elsewhere in your class:
KillSomeZombies();

关于c# - 以编程方式触发事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3311113/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com