アットウィキロゴ
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets
    xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Class</Title>
      <Shortcut>clstest</Shortcut>
    </Header>
    <Snippet>

      <Declarations>
        <Literal>
          <ID>name</ID>
          <Default>ClassName</Default>
        </Literal>

      </Declarations>

      <Code Language="VB">
        <![CDATA[Class Human

    Private _id As Integer
    Private _name As String

    Public Property ID() As Integer
        Get
            Return _id
        End Get
        Set(ByVal value As Integer)
            _id = value
        End Set
    End Property

    Public Property Name() As String
        Get
            Return _name
        End Get
        Set(ByVal value As String)
            _name = value
        End Set
    End Property

End Class]]></Code>
      
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
最終更新:2013年09月01日 21:46