我想知道 C# 委托在传递给方法时是否占用与 C 指针(4 个字节)相似的空间量。
编辑
代表只指向方法对吗?他们不能指向我正确的结构或类。
我想知道 C# 委托在传递给方法时是否占用与 C 指针(4 个字节)相似的空间量。
编辑
代表只指向方法对吗?他们不能指向我正确的结构或类。
是的,委托只指向一个或多个方法。参数必须与方法相似。
public class Program
{
public delegate void Del(string message);
public delegate void Multiple();
public static void Main()
{
Del handler = DelegateMethod;
handler("Hello World");
MethodWithCallback(5, 11, handler);
Multiple multiplesMethods = MethodWithException;
multiplesMethods += MethodOk;
Console.WriteLine("Methods: " + multiplesMethods.GetInvocationList().GetLength(0));
multiplesMethods();
}
public static void DelegateMethod(string message)
{
Console.WriteLine(message);
}
public static void MethodWithCallback(int param1, int param2, Del callback)
{
Console.WriteLine("The number is: " + (param1 + param2).ToString());
}
public static void MethodWithException()
{
throw new Exception("Error");
}
public static void MethodOk()
{
Console.WriteLine("Method OK!");
}
}