Should I use:
Private m_Name As String
Public Property Name() As String
Get
Return m_Name
End Get
Set(ByVal Value As String)
m_Name = Value
End Set
End Property
or just
Public Name As String
The last one just has to be faster, or am I wrong?
Stefan
Private m_Name As String
Public Property Name() As String
Get
Return m_Name
End Get
Set(ByVal Value As String)
m_Name = Value
End Set
End Property
or just
Public Name As String
The last one just has to be faster, or am I wrong?
Stefan
Comment