﻿<?xml version="1.0" encoding="UTF-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>For...Next Statement</Title>
      <Author>Microsoft Corporation</Author>
      <Description>Loops through a sequence of numbers.</Description>
      <Shortcut>For</Shortcut>
    </Header>
    <Snippet>
      <Imports>
      </Imports>
      <Declarations>
        <Literal>
          <ID>LowerBound</ID>
          <Type>Integer</Type>
          <ToolTip>Replace with an Integer value.</ToolTip>
          <Default>1</Default>
        </Literal>
        <Literal>
          <ID>UpperBound</ID>
          <Type>Integer</Type>
          <ToolTip>Replace with an Integer value.</ToolTip>
          <Default>10</Default>
        </Literal>
        <Literal>
          <ID>Variable</ID>
          <Type>Object</Type>
          <ToolTip>Replace with the counter variable name.</ToolTip>
          <Default>index</Default>
        </Literal>
      </Declarations>
      <Code Language="VB" Kind="method body"><![CDATA[For $Variable$ = $LowerBound$ To $UpperBound$

Next]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>