This question is locked. New answers and comments are not allowed.
This problem happens in almost all converts
from C#
| public string myVar { get; set; } |
to VB:
| Public Property myVar() As String |
| Get |
| End Get |
| Set |
| End Set |
| End Property |
witch is very wrong as you can see, it should be:
| Private _myVar As String |
| Public Property myVar() As String |
| Get |
| return _myVar |
| End Get |
| Set |
| _myVar = value |
| End Set |
| End Property |
glad to help