blob: 4847e149ba85baeb97b73be2e61e7a7cf720a1c6 (
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
|
<?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.Ensures(!String.IsNullOrEmpty(Contract.Result()))</Title>
<Shortcut>cesn</Shortcut>
<Description>Emits an 'ensures' clause specifying result not null or empty</Description>
<Author>Jonathan de Halleux</Author>
</Header>
<Snippet>
<Imports>
<Import>
<Namespace>System.Diagnostics.Contracts</Namespace>
</Import>
</Imports>
<Declarations>
</Declarations>
<Code Language="CSharp" Kind="method body"><![CDATA[Contract.Ensures(!String.IsNullOrEmpty(Contract.Result<string>()));
$end$]]></Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
|