Link to home
Start Free TrialLog in
Avatar of louisiana_blues
louisiana_blues

asked on

How to define a Property in VB.NET using the generic SortedList (Of T, V)?

Can an expert tell me how to use the generic SortedList as a Property?  Whenever I try the code below, I get an error.

500 points to the expert who can answer the question!
Public Property Variables() As SortedList(Of String, Variable)()
      Get
        Return (_slVariables)
      End Get
      Set(ByVal svalue As SortedList(Of String, Variable()))
        _slVariables = svalue
      End Set
    End Property

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of JackOfPH
JackOfPH
Flag of Philippines image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Do you need further assistance?