views:

53

answers:

1

I'm adding a new class which inherits from the the RoleProvider, I then need to add all the differant override functions. Is there a quick way to generate them via the IDE?

Hope that makes sense.

Thanks

+5  A: 

Move cursor to your class declaration. If you have ReSharper installed, press Alt + Enter. If not, press Ctrl + . (dot). You'll see what to do next. For instance Ctrl + . will prompt you with "Implement abstract class RoleProvider".

Anton Gogolev
Fantastic. - Thanks
Pino