This commit is contained in:
Ivan Bondarev 2020-12-31 14:18:19 +01:00
parent 8ceadf6943
commit c86cbae306
2 changed files with 1 additions and 1 deletions

View file

@ -62,7 +62,7 @@ namespace Debugger
case CorElementType.R4: return typeof(System.Single);
case CorElementType.R8: return typeof(System.Double);
case CorElementType.I: return typeof(int);
case CorElementType.U: return typeof(uint);
case CorElementType.U: return System.Environment.Is64BitProcess?typeof(ulong):typeof(uint);
case CorElementType.SZARRAY:
case CorElementType.ARRAY: return typeof(System.Array);
case CorElementType.OBJECT: return typeof(System.Object);

Binary file not shown.