IList isn't supported in .Net
pybride opened this issue · 3 comments
pybride commented
awulkiew commented
Hi, indeed more C# types should be supported. Thanks for the suggestion.
awulkiew commented
Btw, a workaround for this would be to cast IList
to List
so to instead of baseline
write ((System.Collections.Generic.List<Camag.Platypus.CommonClient3D.ChartData>)baseline)
. It's possible it'd work without the namespaces too, so: ((List<Camag.Platypus.CommonClient3D.ChartData>)baseline)
or ((List<ChartData>)baseline)
.
awulkiew commented
Added support for all base classes of known types in C# in v0.32.