vote up 2 vote down star

I've switch from VB.NET to C# several months ago, while there are a lot of features I really like in C#, believe it or not, there are some features that I really miss from VB.NET.

One of those features is whenever I implemented an interface in VB.NET the stub properties and methods were automatically added for me.

Is there any way to do this in C#?

flag

2 Answers

vote up 5 vote down check

Right click on the new class that implements the interface, click 'Implement Interface' then click on either of the following two:

Implement Interface: Implements stub props and methods for you.

Implement Interface Explicitly: Implements stub props and methods for you, but also explicitly names the interface the stub is for.

link|flag
Thank you! Thank you! – mattruma Nov 22 '08 at 22:33
vote up 2 vote down

Also you can use the shortkey CTRL + ALT + F10 and then hit ENTER. Or you use CTRL + > :-)

link|flag
Totally forgot about that shortcut, and I'm the one in my group that goes crazy with them. Thanks Mariusz. – David Nov 25 '08 at 15:53
You're welcome ;-) – Mariusz Nov 25 '08 at 18:50

Your Answer

Get an OpenID
or

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