summaryrefslogtreecommitdiff
path: root/Util/Code Snippets/contractassertnonnull.snippet
blob: 4979600a415ca7cbee1f8b15e76372e31a74a770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?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>Contract.Assert(...!=null)</Title>
      <Shortcut>can</Shortcut>
      <Description>Emits a 'Contract.Assert' non-null clause</Description>
      <Author>tabarbe</Author>
    </Header>
    <Snippet>
      <Imports>
        <Import>
          <Namespace>System.Diagnostics.Contracts</Namespace>
        </Import>
      </Imports>
      <Declarations>
        <Object Editable="true">
          <ID>condition</ID>
          <ToolTip>condition that must not be null</ToolTip>
          <Default>arg</Default>
          <Function>
          </Function>
        </Object>
      </Declarations>
      <Code Language="CSharp" Kind="method body"><![CDATA[Contract.Assert($condition$ != null);$end$]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>