Re: [DOTNET] Reflecting delegates

2002-04-12 Thread Diego Gonzalez
Check the Invoke method of the Delegate class. This method has the parameters and return value types. Diego Gonzalez - Original Message - From: "Łukasz Wielek" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 12, 2002 3:07 AM Subject: [DOTNET

Re: [DOTNET] Reflecting delegates

2002-04-12 Thread Sigbjorn Finne
<[EMAIL PROTECTED]> writes: > > Delegates are stored in assemble as Types and can be > retrieved by calling Module.GetTypes(). > It can be distinguished from other types because it is subclass > of System.Delegate. > > But how to obtain information about the shape of the delegate: > what is return

[DOTNET] Reflecting delegates

2002-04-11 Thread Łukasz Wielek
Reflecting delegates How to get information about delegates from module using reflection? Delegates are stored in assembly as Types and can be retrieved by calling Module.GetTypes(). It can be distinguished from other types because it is subclass of System.Delegate. But how to obtain informat