views:

14

answers:

1

How do I create Add Method Wizard in VS C# 2010 Express. It was something like right click on a class library and Add method in Visual Studio.Net 2003. Now when I right click on the class I don't see Add method menu. any Help please? Thanks

+1  A: 

The 'wizard' like ways to add a method are

  • through the class diagram, not in Express
  • use it first (in another method) and select "generate method stub"
  • by using a snippet, you'll have to create one first
Henk Holterman