111,117
社区成员
发帖
与我相关
我的任务
分享//using System.Runtime.InteropServices;
private void button1_Click(object sender, EventArgs e)
{
IntPtr funcAddress = Marshal.GetFunctionPointerForDelegate(
new EventHandler(button1_Click));
Console.WriteLine(funcAddress);
}