dotnet / corert

This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
http://dot.net
MIT License
2.91k stars 511 forks source link

CV arrayType problems #3661

Open sandreenko opened 7 years ago

sandreenko commented 7 years ago

There are some known problems:

  1. windbg doesn't allow to expand arrayType fields, the VS debugger works right;
  2. values show two elements, when should show 1 (ProjectN shows 1) class repro_TestArrays_MyClassA *[2];
  3. ProjectN has better name for primitive arrays types (for example class System::Byte[,] , when CoreRT names it as class UInt8__ )
sandreenko commented 7 years ago

The second was fixed by #3932. @davidwrighton maybe you also knows how to fix the rest?