| Priority |
Critical |
| Type | Bug |
| State | Fixed |
| Assignee | Andrey Simanovsky |
| Subsystem | Generate Action |
| Affected versions |
No affected versions
|
| Fixed in |
4.0, 3.1
|
| Fixed in build |
Next build |
RSRP-50742 |
Delegating properties in VB is broken |
|
|
Public Class Test Private myObjects As New Dictionary(Of Integer, Object)() End Class
Default Public Property Item(ByVal key As Integer) As Object
Get (ByVal key As Integer)
Return myObjects.Item(key)
End Get
Set(ByVal key As Integer, ByVal value As Object)
myObjects.Item(x) = value
End Set
End Property
Default Public Property Item(ByVal key As Integer) As Object
Get
Return myObjects.Item(key)
End Get
Set(ByVal value As Object)
myObjects.Item(key) = value
End Set
End Property