<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>ArgumentNullException</Title>
			<Shortcut>ane</Shortcut>
			<Description>Inserts code for throwing an ArgumentNullException</Description>
			<Author>Roland Weigelt</Author>
		</Header>
		<Snippet>
			<Declarations>
				<Literal>
					<ID>parameterName</ID>
					<ToolTip>Name of the parameter.</ToolTip>
					<Default>parameter</Default>
				</Literal>
			</Declarations>
			<Code Language="csharp">
		if ( $parameterName$ == null )
			throw new ArgumentNullException("$parameterName$");
		$end$
			</Code>
		</Snippet>
	</CodeSnippet>

</CodeSnippets>