Hi Bruce,
You can write your own snippets, as I suggested. VS.NET 2005 even gives you intellisense for the XML schema. It really is simple.
Here's a snippet that you can name, "method.snippet" and place in your My Documents/Visual Studio 2005/Code Snippets folder. Extend
it all you want.
For now it generates the following method stub:
public $return$ $name$()
{
$end$
}
[void] is an input parameter that VS.NET 2005 treats as an input box. Tab through each input box and enter the appropriate data,
with the exception of [end]. Press the 'Enter' key when you are finished filling in the variables. [end] is where the cursor is
placed after you hit 'Enter'.
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="
http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Public Parameterless Method</Title>
<Shortcut>method</Shortcut>
<Description>Stubs out a simple, public method without any parameters.</Description>
<Author>Copyright (c) 2006 Dave Sexton</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal Editable="true">
<ID>return</ID>
<Default>void</Default>
</Literal>
<Literal Editable="true">
<ID>name</ID>
<Default>MethodName</Default>
</Literal>
</Declarations>
<Code Language="csharp">
<![CDATA[public $return$ $name$()
{
$end$
}]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>