awulkiew/graphical-debugging

IList isn't supported in .Net

pybride opened this issue · 3 comments

Hi,
It's a useful tool, but I didn't understand at first why I didn't have any plot.

It seems that IList isn't supported, even if the object is really an standard List. In the screenshot below, baseline don't display anything, but temp works fine (temp = baseline.ToList())

image

Hi, indeed more C# types should be supported. Thanks for the suggestion.

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).

Added support for all base classes of known types in C# in v0.32.