﻿<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>Layout Regions</Title>
			<Shortcut>layout</Shortcut>
			<Description>Creates several #region blocks for the placement of specific code elements from within the body of a class definition.</Description>
			<Author>Dave Sexton</Author>
			<SnippetTypes>
				<SnippetType>Expansion</SnippetType>
				<SnippetType>SurroundsWith</SnippetType>
			</SnippetTypes>
		</Header>
		<Snippet>
			<Declarations>
				<Literal Editable="false">
					<ID>class</ID>
					<Function>ClassName()</Function>
				</Literal>
			</Declarations>
			<Code Language="csharp">
				<![CDATA[#region Public Properties
			#endregion
			
			#region Private / Protected
			#endregion
			
			#region Constructors
			/// <summary>
			/// Constructs a new instance of the <see cref="$class$" /> class.
			/// </summary>
			public $class$($end$)
			{
			}
			#endregion
			
			#region Methods
			$selected$
			#endregion
			
			#region Events
			#endregion
			
			#region Event Handlers
			#endregion
			
			#region Nested
			#endregion]]>
			</Code>
		</Snippet>
	</CodeSnippet>
</CodeSnippets>