Re: [DOTNET] How to determine delegate type in C#

2002-05-02 Thread Bill Schmidt
Robert, I was asking how to determine the delegate type (not how you know what function within your class matches the signature of the delegate that is the actual event). The solution that Drew and Mattias posted (as modified by me in my last post) works great. However, I've made an additional

Re: [DOTNET] How to determine delegate type in C#

2002-05-01 Thread Rolls, Robert
within the info pane (the variable type) will jump to the correct definition within the Objects tree. R. -Original Message- From: Rolls, Robert [mailto:[EMAIL PROTECTED]] Sent: Thursday, 2 May 2002 15:44 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] How to determine delegate type in C# Bi

Re: [DOTNET] How to determine delegate type in C#

2002-05-01 Thread Rolls, Robert
tried this with COM interop assemblies though. anybody figured a better way? I then have to reselect Active project for everything else to work again. R. -Original Message- From: Bill Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, 2 May 2002 4:19 To: [EMAIL PROTECTED] Subject: Re: [DOTN

Re: [DOTNET] How to determine delegate type in C#

2002-05-01 Thread Bill Schmidt
Thanks, Drew and Mattias. Both of you said the same thing, but neither of you said it in a way I could immediately understand. For the archives, the key thing (and apparently the only way to do this) is to type a "." before the "+=". In other words, if I type this.cboName. Intellisense show

Re: [DOTNET] How to determine delegate type in C#

2002-05-01 Thread Mattias Sjögren
Bill, >But how can I figure out what goes after the "new" keyword? It shows in the tooltip for the event in the IntelliSense list. After you have typed in SelectedIndexChanged, you can also right-click and select Go To Definition (or press F12), which will bring you to the Object Browser, whe

Re: [DOTNET] How to determine delegate type in C#

2002-05-01 Thread Marsh, Drew
Bill Schmidt [mailto:[EMAIL PROTECTED]] wrote: > How are more experienced C# programmers hooking up events in > a RAD fashion? I'm looking for a shortcut similar to (but > hopefully easier/quicker than) the one for getting the event > signature. Intellisense shows the type of the event. So if i