some properties..
one publicĀ delegate..
one public event...
public Form1()
{
MyClass obMyClass = new MyClass();obMyClass.eventName +=new MyClass.delegateName (newMethod); // if I coment this line everything is fine..// but if not, when i try to serialize obMyClass, i get exception (Form1 not mark as serializable), so please if anyone can help me..
}public void newMethod(){ some code here..}