I need to convert from
object {object[]}
to
System.Collections.Generic.List<int>
Inside each element in the object array there is a object {int} element.
I got this structure from a COM dll.
I was wondering how is the easiest way to do that.
Thanks in advance!
try