location.vb

来自「通过串口发送短信的模块,采用vb.net编写」· VB 代码 · 共 53 行

VB
53
字号


''' <summary>
''' Location class
''' </summary>
''' <remarks></remarks>
Public Class Location
    Private strMCC As String
    Private strMNC As String
    Private strLAI As String
    Private strCellID As String

    Public Property MCC() As String
        Get
            Return Me.strMCC
        End Get
        Set(ByVal value As String)
            Me.strMCC = value
        End Set
    End Property

    Public Property MNC() As String
        Get
            Return Me.strMNC
        End Get
        Set(ByVal value As String)
            Me.strMNC = value
        End Set
    End Property

    Public Property LAI() As String
        Get
            Return Me.strLAI
        End Get
        Set(ByVal value As String)
            Me.strLAI = value
        End Set
    End Property

    Public Property CellID() As String
        Get
            Return Me.strCellID
        End Get
        Set(ByVal value As String)
            Me.strCellID = value
        End Set
    End Property



End Class

⌨️ 快捷键说明

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