ByRef type should be dumped like typeof(T&)
The below code...
new [] {
Type.GetType("System.Int32[]"),
Type.GetType("System.Int32*"),
Type.GetType("System.Int32&"),
}.Dump();
...dumps [ Type[] (3 items) ] with:
typeof(Int32[])
typeof(Int32*)
typeof(Int32)
(each element is hyperlinked)
In this result, the last element "typeof(Int32)" should be dumped as "typeof(Int32&)".
I think this is a bug and should be fixed.
0
votes

-
Maxwell Bloch commented
On 4.48.04, and looks good!