This question is locked. New answers and comments are not allowed.
We are working with VS2005 with VB.NET an using Telerik JustCode 2010.1.223.0
The issue is that when I select a nullable variable it uses C# '?' notation wich is not suported on VB.NET
Using the "Create Set/Get property" on this
Generates this
Wich is not valid. Instead of
The issue is that when I select a nullable variable it uses C# '?' notation wich is not suported on VB.NET
Using the "Create Set/Get property" on this
| Private _SomeVar As Nullable(Of Integer) |
Generates this
| Public Property SomeVar() As Integer? |
| Get |
| Return _SomeVar |
| End Get |
| Set(ByVal Value As Integer?) |
| _SomeVar = Value |
| End Set |
| End Property |
| Public Property SomeVar() As Nullable(Of Integer) |
| Get |
| Return _SomeVar |
| End Get |
| Set(ByVal Value As Nullable(Of Integer)) |
| _SomeVar = Value |
| End Set |
| End Property |