Skip to content

Instantly share code, notes, and snippets.

@lennybacon
Created July 16, 2013 10:58
Show Gist options
  • Save lennybacon/6007741 to your computer and use it in GitHub Desktop.
Save lennybacon/6007741 to your computer and use it in GitHub Desktop.
Code Snippet: Surround With Task
<?xml version="1.0"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Task</Title>
<Author>Daniel Fisher(lennybacon)</Author>
<Description>Task</Description>
<Shortcut>task</Shortcut>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Imports>
<Import>
<Namespace>System.Threading.Tasks</Namespace>
</Import>
</Imports>
<Code Language="csharp" Kind="method body"><![CDATA[Task.Factory.StartNew(
() => {
$selected$ $end$
}
);]]></Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment