shophelpinfo.vb
来自「C#语言制作asp.net网上商店的」· VB 代码 · 共 45 行
VB
45 行
Namespace NetShopForge.Library.ShopHelp
Public Class ShopHelpInfo
Private _ShopHelpID As Integer
Private _ShopCategoryID As Integer
Private _Name As String
Private _Description As String
Public Property ShopHelpID() As Integer
Get
Return _ShopHelpID
End Get
Set(ByVal value As Integer)
_ShopHelpID = value
End Set
End Property
Public Property ShopHelpCategoryID() As Integer
Get
Return _ShopCategoryID
End Get
Set(ByVal value As Integer)
_ShopCategoryID = 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
Public Property Description() As String
Get
Return _Description
End Get
Set(ByVal value As String)
_Description = value
End Set
End Property
End Class
End Namespace
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?