VB.NET学习(一)建立对象访问属性

Public Class TestClass Test
    
Private _classid As String
    
''' <summary>
    ''' 设置和获取分类ID
    ''' </summary>
    Public Property classid()
        
Get
            
Return _classid
        
End Get
        
Set(ByVal value)
            _classid 
= value
        
End Set
    
End Property
End Class