Error 45 'System.Collections.Generic.List(Of String)' cannot be converted to 'System.Collections.Generic.List(Of Object)'. Consider using 'System.Collections.Generic.IEnumerable(Of Object)' instead. H:\business\shared\Dropbox\vb.net\proxyhandler.vb 198 19 nicehash2
This is the error that I got. Replacing
System.Collections.Generic.List(Of Object)
with
System.Collections.Generic.IEnumerable(Of Object)
solves the problem.
I am aware that the second type is an interface. I am still confused.
But why?