0

对 Visual Basic 来说有点新。

你知道在 C# 中我们会写例如:

public class MyClass
{
    public int Age {get; set;} 
}

我需要做类似的事情才能使用一个类来捕获一些数据,然后创建一个这个对象类型的列表。但是,我如何在 Visual Basic 中编写一个简单的 Get、Set 类?有什么方法可以像我们在 C# 中那样简单地实现这一点??????谢谢!!

4

3 回答 3

2

没有花括号,也没有明确的 get;放;

Public Property Age As Integer

MSDN

于 2013-11-07T03:59:26.567 回答
0

只需将其声明为公开:

Public Age As Integer = 0

于 2013-11-07T03:59:14.393 回答
0
  Private _Age as Integer

Public Property Age() As Integer
        Get
            Return _Age 
        End Get
        Set(ByVal value As Integer)
            _Age = value
        End Set
    End Property
于 2013-11-07T04:56:23.537 回答