purplehaze1
Programmer
How to write this in vb.net? Thanks.
Public Property Get Item(vntIndexKey As Variant) As customer
On Error Resume Next
Set Item = mcol(vntIndexKey)
If Err.Number <> 0 Then
Set Item = Nothing
End If
End Property
Public Property Get Item(vntIndexKey As Variant) As customer
On Error Resume Next
Set Item = mcol(vntIndexKey)
If Err.Number <> 0 Then
Set Item = Nothing
End If
End Property