You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
SD-1758, originally created on 11/12/2010 21:36:39 by Siegfried Pammer
Take this code:
T IList.this[int index] {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
and convert it to VB:
Private Default Property IList_Item(index As Integer) As T Implements IList(Of T).this
Get
Throw New NotImplementedException()
End Get
Set
Throw New NotImplementedException()
End Set
End Property
This code has some problems:
it should be Implements IList(Of T).Item
the Default modifier is not valid on Private properties