vote up 7 vote down star
5

What are some macros that you have found useful in Visual Studio for code manipulation and automation? Since good code can be useful in all languages, this question is not language specific.

flag

8 Answers

vote up 3 vote down

I use this one alot:

Right Click -> Insert Code Snippet
Select -> Common Code Patterns
Select -> Conditionals And Loops
Select -> If .. End If Statement

What this allows you do, is only execute some code if something (a variable or expression or whatever) is true, or false, or greater than something. It's pretty handy.

link|flag
1  
I'm going to assume from the upvotes, this is a serious answer to the question? if so, I recommend the typing if and hitting tab twice instead of all the mousing. – Maslow Jun 23 at 17:05
so thats hwy its there – Shawn Simon Jun 23 at 17:25
vote up 2 vote down

asnn as a snippet bound to Debug.Assert( [object] != null );

Anything else like that

link|flag
vote up 4 vote down

The best is the if snippet in C#

if -> Just hit tab twice and you get

if(true)
{

}

Also works with the while loop, for loop, foreach loop. There is a good property one.

Here is a snippet I wrote for ViewState properties.

<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">

    <CodeSnippet Format="1.0.0">
    	<Header>
    		<Title>Generic Property - View State</Title>
    		<Description>Inserts a Generic Property</Description>
    		<Author>David Basarab</Author>
    		<Shortcut>property_ViewState</Shortcut>
    		<SnippetTypes>
    			<SnippetType>Expansion</SnippetType>
    		</SnippetTypes>
    	</Header>
    	<Snippet>
    		<Declarations>
    			<Literal Editable="true">
    				<ID>PropertyName</ID>
    				<Default>PropertyName</Default>
    				<ToolTip>Replace this with the name of the Property.</ToolTip>
    			</Literal>
        <Literal Editable="true">
          <ID>Type</ID>
          <Default>string</Default>
          <ToolTip>Replace this with the type of the Property.</ToolTip>
        </Literal>
        <Literal Editable="true">
          <ID>DefaultValue</ID>
          <Default>string.Empty</Default>
          <ToolTip>Replace this with the default value of the Property.</ToolTip>
        </Literal>
      </Declarations>
      <Code Language="CSharp">
        <![CDATA[#region $PropertyName$
            public $Type$ $PropertyName$
            {
                get
                {
                    if (this.ViewState["$PropertyName$"] == null)
                        return $DefaultValue$;

                    return ($Type$)this.ViewState["$PropertyName$"];
                }
                set { this.ViewState["$PropertyName$"] = value; }
            }
            #endregion]]>
      </Code>
    </Snippet>
  </CodeSnippet>

</CodeSnippets>
link|flag
vote up 1 vote down

Heh, i have the same kind of code snippet for the viewstate property, which i use while developping in vb.net

<?xml version="1.0"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>ViewState property</Title>
      <Author>SB</Author>
      <Description>Add data in the viewstate simply. </Description>
      <Shortcut>vprop</Shortcut>
    </Header>
    <Snippet>
      <Declarations>
        <Literal>
          <ID>PropertyType</ID>
          <ToolTip>Type of the object</ToolTip>
          <Default>Integer</Default>
        </Literal>
        <Literal>
          <ID>PropertyName</ID>
          <Type>String</Type>
          <ToolTip>Name of property</ToolTip>
          <Default>ViewStateProperty</Default>
        </Literal>
      </Declarations>
      <Code Language="VB"><![CDATA[Private $PropertyName$Default as $PropertyType$ '=
Public Property $PropertyName$() as $PropertyType$
    Get
    	Dim obj as Object = ViewState("$PropertyName$")
    	if (obj isnot Nothing)
    		return DirectCast(obj, $PropertyType$)
    	end if
    	return $PropertyName$Default
    End Get
    Set(ByVal value As $PropertyType$)
    	ViewState("$PropertyName$") = value
    End Set
End Property
]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>

I discovered these powerful tools only recently; for me, their use through shortcuts is really useful.

As a matter of fact, i think in future projects i will go as far as abstracting parts of the framework i'll be working with into snippets, assign them meaningful names and distribute them to the team; on the other hand, i could lead to code repetition, things that could be better handled by factoring the code...

link|flag
vote up 4 vote down

Update: There is a VS2008 extension called Snippet Designer (mentioned here) that allows you to edit/add/manage snippets in the visual studio editor.

Mostly I use snippets in my C# coding, but I have found property snippets to be very useful and time-saving.

Caveat: You may not like the variable naming/indentation, etc. but rather than start a religious war in an otherwise peaceful question, remember that its easy to tweak these snippets for your own, custom conventions.

Streamlined "prop" snippet

Visual Studio comes pre-equipped with a "prop" snippet, but it makes you enter four fields (name and type of both the property and backing field). I found that in many cases, two entries was fine. Further more, the default "prop" had some weird indention stuff going on. (Isn't the point to MINIMIZE keystrokes?) So I customized and updated the snippet:

prop

If you use this, you will probably want to back up your existing "prop" snippet either by renaming it in its .snippet file or moving to another directory. Otherwise you will get two "prop" entries in the VS UI.

"prop_databound" snippet

In order for .NET databinding to go smoothly, having a "Changed" event is recommended. Many controls will use this to notify your properties value has updated. However, its a tedious process to generate this for each public property. "prop_databound" creates the property, backing field, event, and a function for manually triggering the event. You may not need/use all of that at once, but its easier to delete a section than it is to type it all!

prop_databound

"prop_lazy" snippet

I threw this in as well...This is just a property with lazy instantiation, i.e. the backing field does not allocate an object until its first use. This can be useful in certain scenarios.

prop_lazy

Edit: Heh. My lazy example screenshot was so lazy that it ignored the fact that there is no default constructor for Console.

Snippet XML

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
	<Header>
		<Title>prop_databound</Title>
		<Shortcut>prop_databound</Shortcut>
		<Description>Code snippet for property, backing field, and databinding event</Description>
		<Author>ee from www.devfuel.com</Author>
		<SnippetTypes>
			<SnippetType>Expansion</SnippetType>
		</SnippetTypes>
	</Header>
	<Snippet>
		<Declarations>
			<Literal>
				<ID>type</ID>
				<ToolTip>Property type</ToolTip>
				<Default>int</Default>
			</Literal>
			<Literal>
				<ID>field</ID>
				<ToolTip>The variable backing this property</ToolTip>
				<Default>myVar</Default>
			</Literal>
		</Declarations>
		<Code Language="csharp"><![CDATA[private $type$ m_$field$;
public $type$ $field$
{
	get { return m_$field$;}
	set 
	{ 
		if (value != m_$field$)
        {
            m_$field$ = value;
            On$field$Changed(EventArgs.Empty);
        }
	}
}
public event EventHandler $field$Changed;
protected virtual void On$field$Changed(EventArgs e)
link|flag
You can use ?? in the lazy get - makes for a cleaner definition. – Dmitri Nesteruk Jun 19 at 13:20
vote up 0 vote down

I modify the existing class snippet to include sealed per default, because that is much more sensible to me. Types should be designed specifically for inheritance - if they are not, they should be sealed imo.

link|flag
vote up 1 vote down

Memory Jogging : IComparable.CompareTo

Every so often there are certain interfaces and overrides that need to repeatedly happen. In my current project, IComparable.CompareTo() is one of them. Since i found myself repeatedly typing it in, and reminding myself of the correct default behavior, i realized this was a perfect candidate for a snippet:

compareto_snippet

Snippet Code

<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
<Header>
  <SnippetTypes>
    <SnippetType>Expansion</SnippetType>
  </SnippetTypes>
  <Title>compareto</Title>
  <Author>ee of http://www.devfuel.com</Author>
  <Description>
	A quick and dirty CompareTo implementation
  </Description>
  <HelpUrl>
  </HelpUrl>
  <Shortcut>
  compareto
  </Shortcut>
</Header>
<Snippet>
  <Declarations>
    <Literal Editable="true">
      <ID>ThisType</ID>
      <ToolTip>The local type</ToolTip>
      <Default>ThisType</Default>
      <Function>
      </Function>
    </Literal>
  </Declarations>
  <Code Language="csharp"><![CDATA[public int CompareTo(object obj)
        {
            $ThisType$ rhs = obj as $ThisType$;
            if (rhs != null)
            {
				//return this.Member.CompareTo(rhs.Member);
				return 0;$end$
            }
            else
            {
                throw new ArgumentException("object is not of type $ThisType$");
            }
        }]]></Code>
</Snippet>
  </CodeSnippet>
</CodeSnippets>
link|flag
vote up 1 vote down

Dispose pattern

///<summary>Releases unmanaged resources and performs other cleanup operations before the ClassName is reclaimed by garbage collection.</summary>
~ClassName() { Dispose(false); }
///<summary>Releases all resources used by the ClassName.</summary>
public void Dispose() { Dispose(true); GC.SuppressFinalize(this); }
///<summary>Releases the unmanaged resources used by the ClassName and optionally releases the managed resources.</summary>
///<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
protected virtual void Dispose(bool disposing) {
	if (disposing) {

	}
}


Event definition

Includes special versions for EventHandler and PropertyChangedEventHandler

///<summary>Occurs when ....</summary>
public event EventHandler<MyEventArgs> MyEvent;
///<summary>Raises the MyEvent event.</summary>
///<param name="e">A  MyEventArgs object that provides the event data.</param>
internal protected virtual void OnMyEvent(MyEventArgs e) {
	if (MyEvent != null)
		MyEvent(this, e);
}


Dispose Source

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>Dispose pattern</Title>
			<Shortcut>dispose</Shortcut>
			<Description>Code snippet for virtual dispose pattern</Description>
			<Author>SLaks</Author>
			<SnippetTypes>
				<SnippetType>Expansion</SnippetType>
				<SnippetType>SurroundsWith</SnippetType>
			</SnippetTypes>
		</Header>
		<Snippet>
			<Declarations>
				<Literal Editable="false">
					<ID>classname</ID>
					<ToolTip>Class name</ToolTip>
					<Default>ClassNamePlaceholder</Default>
					<Function>ClassName()</Function>
				</Literal>
			</Declarations>
			<Code Language="csharp">
				<![CDATA[
		///<summary>Releases unmanaged resources and performs other cleanup operations before the $classname$ is reclaimed by garbage collection.</summary>
		~$classname$() { Dispose(false); }
		///<summary>Releases all resources used by the $classname$.</summary>
		public void Dispose() { Dispose(true); GC.SuppressFinalize(this); }
		///<summary>Releases the unmanaged resources used by the $classname$ and optionally releases the managed resources.</summary>
		///<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
		protected virtual void Dispose(bool disposing) {
			if (disposing) {
				$end$$selected$
			}
		}]]>
			</Code>
		</Snippet>
	</CodeSnippet>
</CodeSnippets>


Event Source

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>Typed Event</Title>
			<Shortcut>event</Shortcut>
			<Description>Code snippet for event and raiser with custom EventArgs type</Description>
			<Author>SLaks</Author>
			<SnippetTypes>
				<SnippetType>Expansion</SnippetType>
			</SnippetTypes>
		</Header>
		<Snippet>
			<Declarations>
				<Literal>
					<ID>type</ID>
					<ToolTip>EventArgs type</ToolTip>
					<Default>My</Default>
				</Literal>
				<Literal>
					<ID>event</ID>
					<ToolTip>Event name</ToolTip>
					<Default>MyEvent</Default>
				</Literal>
				<Literal>
					<ID>desc</ID>
					<ToolTip>Event description</ToolTip>
					<Default>...</Default>
				</Literal>
				<Literal>
					<ID>n</ID>
					<ToolTip>n</ToolTip>
					<Default></Default>
				</Literal>
			</Declarations>
			<Code Language="csharp"><![CDATA[///<summary>Occurs when $desc$.</summary>
		public event EventHandler<$type$EventArgs> $event$;
		///<summary>Raises the $event$ event.</summary>
		///<param name="e">A$n$ $type$EventArgs object that provides the event data.</param>
		internal protected virtual void On$event$($type$EventArgs e) {
			if ($event$ != null)
				$event$(this, e);
		}
		$end$]]></Code>
		</Snippet>
	</CodeSnippet>
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>Event</Title>
			<Shortcut>event</Shortcut>
			<Description>Code snippet for event and raiser</Description>
			<Author>SLaks</Author>
			<SnippetTypes>
				<SnippetType>Expansion</SnippetType>
			</SnippetTypes>
		</Header>
		<Snippet>
			<Declarations>
				<Literal>
					<ID>event</ID>
					<ToolTip>Event name</ToolTip>
					<Default>MyEvent</Default>
				</Literal>
				<Literal>
					<ID>desc</ID>
					<ToolTip>Event description</ToolTip>
					<Default>...</Default>
				</Literal>
			</Declarations>
			<Code Language="csharp"><![CDATA[///<summary>Occurs when $desc$.</summary>
		public event EventHandler $event$;
		///<summary>Raises the $event$ event.</summary>
		internal protected virtual void On$event$() { On$event$(EventArgs.Empty); }
		///<summary>Raises the $event$ event.</summary>
		///<param name="e">An EventArgs object that provides the event data.</param>
		internal protected virtual void On$event$(EventArgs e) {
			if ($event$ != null)
				$event$(this, e);
		}
		$end$]]></Code>
		</Snippet>
	</CodeSnippet>
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>PropertyChanged Event</Title>
			<Shortcut>event</Shortcut>
			<Description>Code snippet for PropertyChanged event and raiser</Description>
			<Author>SLaks</Author>
			<SnippetTypes>
				<SnippetType>Expansion</SnippetType>
			</SnippetTypes>
		</Header>
		<Snippet>
			<Declarations>
				<Literal>
					<ID>event</ID>
					<ToolTip>Event name</ToolTip>
					<Default>MyEvent</Default>
				</Literal>
				<Literal>
					<ID>desc</ID>
					<ToolTip>Event description</ToolTip>
					<Default>...</Default>
				</Literal>
			</Declarations>
			<Code Language="csharp"><![CDATA[///<summary>Occurs when a property value is changed.</summary>
		public event PropertyChangedEventHandler PropertyChanged;
		///<summary>Raises the PropertyChanged event.</summary>
		///<param name="name">The name of the property that changed.</param>
		internal protected virtual void OnPropertyChanged(string name) { OnPropertyChanged(new PropertyChangedEventArgs(name)); }
		///<summary>Raises the PropertyChanged event.</summary>
		///<param name="e">An EventArgs object that provides the event data.</param>
		internal protected virtual void OnPropertyChanged(PropertyChangedEventArgs e) {
			if (PropertyChanged != null)
				PropertyChanged(this, e);
		}
		$end$]]></Code>
		</Snippet>
	</CodeSnippet>
</CodeSnippets>
link|flag
Sorry for the length – SLaks Jun 19 at 12:57

Your Answer

Get an OpenID
or

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