public Form1()
        {
            InitializeComponent();            this.Load+=new EventHandler(Form1_Load1);
            this.Load+=new EventHandler(Form1_Load2);            PropertyInfo propertyInfo = (typeof(Form)).GetProperty("Events", BindingFlags.Instance | BindingFlags.NonPublic);
            EventHandlerList eventHandlerList = (EventHandlerList)propertyInfo.GetValue(this, null);
            FieldInfo fieldInfo = (typeof(Form)).GetField("EVENT_LOAD", BindingFlags.Static | BindingFlags.NonPublic);            Delegate d = eventHandlerList[fieldInfo.GetValue(null)];            if (d != null)
            {
                foreach (Delegate de in d.GetInvocationList())
                    Console.WriteLine(de.Method.Name);
            }
        }
        private void Form1_Load1(object sender, EventArgs e)
        {
            //什么也不干
        }
        private void Form1_Load2(object sender, EventArgs e)
        {
            //什么也不干
        }
    }这里面的“EVENT_LOAD”是???在哪个类里面能找到啊??