A
Armin Zingler
Hi,
Dim l1 As IList(Of IList)
Dim l2 As New List(Of List(Of Integer))
l1 = l2
Why is the assignment not compilable? Every List(Of) implements IList.
Dim l1 As IList(Of IList)
Dim l2 As New List(Of List(Of Integer))
l1 = l2
Why is the assignment not compilable? Every List(Of) implements IList.