snoopy123123
Member
- Joined
- Jun 24, 2013
- Messages
- 6
- Programming Experience
- 5-10
Hello,
I am very new to VB.net coming mainly from Delphi. However I have been thrown on a project to convert VB6 code to VB in VS2010.net and I am struggeling with with properties. How would I convert the following VB6 code into .net ? The whole Let/Get thing gets me confused right now so every explanation would be appreciated. Thanks in advance.
Public Property Let Coat(ByVal vData As String)
mvarCoat = vData
End Property
Public Property Get Coat() As String
Coat = mvarCoat
End Property
Property
I am very new to VB.net coming mainly from Delphi. However I have been thrown on a project to convert VB6 code to VB in VS2010.net and I am struggeling with with properties. How would I convert the following VB6 code into .net ? The whole Let/Get thing gets me confused right now so every explanation would be appreciated. Thanks in advance.
Public Property Let Coat(ByVal vData As String)
mvarCoat = vData
End Property
Public Property Get Coat() As String
Coat = mvarCoat
End Property
Property