wishlistuserinfo.vb
来自「C#语言制作asp.net网上商店的」· VB 代码 · 共 35 行
VB
35 行
Namespace NetShopForge.Library.WishList
Public Class WishListUserInfo
Private _username As String
Private _itemcount As Integer
Public Property UserName() As String
Get
Return _username
End Get
Set(ByVal value As String)
_username = value
End Set
End Property
Public Property ItemCount() As Integer
Get
Return _itemcount
End Get
Set(ByVal value As Integer)
_itemcount = value
End Set
End Property
End Class
End Namespace
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?