This commit is contained in:
Ivan Bondarev 2020-12-31 17:57:39 +01:00
parent c86cbae306
commit 73f9425aae
2 changed files with 2 additions and 2 deletions

View file

@ -61,8 +61,8 @@ namespace Debugger
case CorElementType.U8: return typeof(System.UInt64);
case CorElementType.R4: return typeof(System.Single);
case CorElementType.R8: return typeof(System.Double);
case CorElementType.I: return typeof(int);
case CorElementType.U: return System.Environment.Is64BitProcess?typeof(ulong):typeof(uint);
case CorElementType.I: return typeof(IntPtr);
case CorElementType.U: return typeof(UIntPtr);//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.