⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 productselectedinfo.vb

📁 C#语言制作asp.net网上商店的
💻 VB
字号:
Namespace NetShopForge.Library.Product


    <System.Serializable()> Public Class ProductSelectedInfo

        Private _productid As Integer
        Private _productName As String
        Private _price As Decimal


        ''' <summary>
        ''' 
        ''' </summary>
        Public Property ProductID() As Integer
            Get
                Return _productid
            End Get
            Set(ByVal Value As Integer)
                _productid = Value
            End Set
        End Property
        ''' <summary>
        ''' Percent 0,absolute1
        ''' </summary>
        Public Property productName() As String
            Get
                Return _productName
            End Get
            Set(ByVal Value As String)
                _productName = Value
            End Set
        End Property
        ''' <summary>
        ''' 
        ''' </summary>
        Public Property Price() As Decimal
            Get
                Return _price
            End Get
            Set(ByVal Value As Decimal)
                _price = Value
            End Set
        End Property
    End Class
End Namespace

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -