Hello this is my first time posting so bear with me if I'm not so on point. Here is my question:
I'm trying to create a list within a list in asp.net, something like
callList(a).part(b).Number
callList(a).part(b).Desc
I have service calls and each of these calls can have multiple parts listed in them. Right now the class structure is something like
public class calls
somevars.....
public class part
public Number as integer
public desc as String
end class
end class
To create the call themselves I have
callList As New List(Of calls)
callList.add(calls)
How would I add multiple parts for each call?