vote up 3 vote down star

Visual Studio likes to be helpful when typing:

Event +=

by generating code like:

Event += new EventHandler(EventClassName_Event);

void EventClassName_Event(object sender, EventArgs e)
{
    throw new System.NotImplementedException();
}

Ideally I would like to remove the explicit delegate and add an explicit private. Like so:

Event += EventClassName_Event;

private void EventClassName_Event(object sender, EventArgs e)
{
    throw new System.NotImplementedException();
}

I've looked to see if there is a snippet, but found nothing. Any suggestions? I do have ReSharper installed if there is a way that it can do this.

flag

1 Answer

vote up 2 vote down check

With Resharper if I type:

myObject.SomeEvent +=

then hit Ctrl-Shift-Space, I get the option to create a method or a delegate (or to use an existing method). I think this is what you want.

link|flag
1  
Hmm, ctrl-shift-space isn't doing anything. Maybe I need to change a setting? – Todd White Nov 14 '08 at 4:44
Hmm definitely works for me. It's called "Smart Completion" (jetbrains.com/resharper/features/…) – cbp Nov 14 '08 at 4:51
When I go to tools -> options -> Environtment -> Keyboard it looks like ctrl+shift+space is assigned to Edit.ParameterInfo. Maybe it should be something different? – Todd White Nov 14 '08 at 4:57
1  
Looks like on my machine it was setup to be Ctrl+Alt+Space, not sure why that was chosen. The command that is run is "ReSharper.ReSharper_CompleteCodeSmart". – Todd White Nov 14 '08 at 5:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.