Why not assignable?

  • Thread starter Thread starter Armin Zingler
  • Start date Start date
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.
 
Back
Top