Skip to content

Instantly share code, notes, and snippets.

@aligneddev
Created March 18, 2020 20:33
Show Gist options
  • Save aligneddev/139c43201317c79dfcce21a2799b1862 to your computer and use it in GitHub Desktop.
Save aligneddev/139c43201317c79dfcce21a2799b1862 to your computer and use it in GitHub Desktop.
Visual Studio C# Snippets
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Moq It.IsAny</Title>
<Shortcut>mia</Shortcut>
<Description>Moq.It.IsAny for tests</Description>
<Author>Kevin Logan</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>type</ID>
<ToolTip>Type</ToolTip>
<Default>CancellationToken</Default>
</Literal>
</Declarations>
<Code Language="csharp"><![CDATA[Moq.It.IsAny<$type$>()]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment