<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>读取命令行参数</Title>
      <Author>Microsoft Corporation</Author>
      <Description>循环访问命令行参数。</Description>
      <Shortcut>appArgs</Shortcut>
      <Keywords>
        <Keyword>命令行参数</Keyword>
        <Keyword>命令</Keyword>
      </Keywords>
    </Header>
    <Snippet>
      <Imports>
        <Import>
          <Namespace>Microsoft.VisualBasic</Namespace>
        </Import>
      </Imports>
      <Code Language="VB" Kind="method body"><![CDATA[For Each argument In My.Application.CommandLineArgs

Next

]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
