private void button1_Click(object sender, EventArgs e)
{
EventInfo ei = oth.GetType().GetEvent("Eve");
FieldInfo fi = oth.GetType().GetField("Eve", BindingFlags.NonPublic | BindingFlags.Instance);
Action act = (Action)fi.GetValue(oth);
ei.RemoveEventHandler(oth, act);
//oth.Eve -= Method3;
}