diff --git a/Debugger.Core/Src/Variables/Types/DebugType-Helpers.cs b/Debugger.Core/Src/Variables/Types/DebugType-Helpers.cs index 7775d707f..535bdf165 100644 --- a/Debugger.Core/Src/Variables/Types/DebugType-Helpers.cs +++ b/Debugger.Core/Src/Variables/Types/DebugType-Helpers.cs @@ -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); diff --git a/Libraries/Debugger.Core.dll b/Libraries/Debugger.Core.dll index 4d77a331c..1fc85fbb4 100644 Binary files a/Libraries/Debugger.Core.dll and b/Libraries/Debugger.Core.dll differ