USState其实是ListControl的文档中在好几个地方都用的一个自定义类型,他的定义在某一处有定义:Public Class USState    Private myShortName As String
    Private myLongName As String    Public Sub New(ByVal strlongName As String, ByVal strShortName As String)
        MyBase.New()
        Me.myShortName = strShortName
        Me.myLongName = strLongName
    End Sub    Public ReadOnly Property ShortName() As String
        Get
            Return myShortName
        End Get
    End Property    Public ReadOnly Property LongName() As String
        Get
            Return myLongName
        End Get
    End Property    Public Overrides Function ToString() As String
        Return Me.ShortName & " - " & Me.LongName
    End Function
End Class
Hogwarts - S(u)ddenly dis@ppeared...

本贴子以“现状”提供且没有任何担保,同时也没有授予任何权利。具体事项可参见使用条款(http://support.microsoft.com/directory/worldwide/zh-cn/community/terms_chs.asp)。  
为了为您创建更好的讨论环境,请参加我们的用户满意度调查(http://support.microsoft.com/directory/worldwide/zh-cn/community/survey.asp?key=(S,49854782))。