VB.NET äquivalent zu C# - Eigenschaft Kürzel?

Gibt es eine VB.NET -äquivalent zur C#:

public string FirstName { get; set; }

Ich weiß, Sie tun können,

Public Property name() As String
   Get
      Return _name.ToString
   End Get
   Set(ByVal value As String)
       _name = value
   End Set
End Property

Aber ich kann nicht scheinen, um google eine Antwort auf eine Visual Basic-Kürzel.

InformationsquelleAutor der Frage Birk | 2009-01-20

Schreibe einen Kommentar