I have
public delegate void DocumentCompleteEventHandler(object pDisp, ref object URL)
Can i use lambda expression such as :
ie.DocumentComplete += (o, e) => { };
It expression doesn't work. How should i change it for using in code? Is it possible?