When inheriting a class can you generate all the override functions and methods?
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 s开发者_高级运维ense.
Thanks
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".
精彩评论