Here's one way:
Load up VS and create a new project (I created a windows console .NET Framework 4.8 project).
Add a reference to JiwaApplication.dll (or whichever assembly contains the object/event you are interested in)
Instantiate the object (in this case it is the manager object that throws the EmailSendBefore event):
- Code: Select all
JiwaFinancials.Jiwa.JiwaApplication.Manager myManager = new JiwaFinancials.Jiwa.JiwaApplication.Manager();
Now add a handler for the event you are interested in:
- Code: Select all
myManager.EmailSendBefore += myManager_EmailSendBefore;
Note how the compiler is upset because you have not defined the handler yet:
Now, hover the mouse pointer over the error (the text with the red squiggle under it) and choose "Show potential fixes" from the context menu:
Select "Generate method ..." from the list:
Now you have the signature information!
There are likely other ways, and these would vary via IDE.