我想让这个函数在我的程序中工作,但 Visual Studio 告诉我 MyFunc 是一个变量,但它像一个方法一样使用,但这就是我想要做的。试图调用它。
static private void TryThisFunc(Delegate MyFunc)
{
try
{
MyFunc(); // MyFunc is a variable but is used like a method
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}