111,098
社区成员




//using System.Runtime.InteropServices;
private void button1_Click(object sender, EventArgs e)
{
IntPtr funcAddress = Marshal.GetFunctionPointerForDelegate(
new EventHandler(button1_Click));
Console.WriteLine(funcAddress);
}