<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>for_loop</Title>
<Shortcut>for_loop</Shortcut>
<Description>For Döngüsü için Hazırladığım Kod Bloğu</Description>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>type</ID>
<ToolTip>Property type</ToolTip>
<Default>int</Default>
</Literal>
<Literal>
<ID>i</ID>
<ToolTip>Property name</ToolTip>
<Default>i</Default>
</Literal>
<Literal>
<ID>deger</ID>
<ToolTip>Property name</ToolTip>
<Default>deger</Default>
</Literal>
</Declarations>
<Code Language="csharp">
<![CDATA[
for($type$ $i$ = 0; $i$ < $deger$; $i$++)
{
}
$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>