Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/IL/ILReader.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/ILReader.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/ILReader.cs b/src/coreclr/tools/Common/TypeSystem/IL/ILReader.cs
index d722b2e1712..d0022a5bad7 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/ILReader.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/ILReader.cs
@@ -1,7 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-using System;
using Internal.TypeSystem;
using Debug = System.Diagnostics.Debug;
@@ -55,22 +54,22 @@ namespace Internal.IL
return _ilBytes[_currentOffset++];
}
- public UInt16 ReadILUInt16()
+ public ushort ReadILUInt16()
{
if (_currentOffset + 2 > _ilBytes.Length)
ThrowHelper.ThrowInvalidProgramException();
- UInt16 val = (UInt16)(_ilBytes[_currentOffset] + (_ilBytes[_currentOffset + 1] << 8));
+ ushort val = (ushort)(_ilBytes[_currentOffset] + (_ilBytes[_currentOffset + 1] << 8));
_currentOffset += 2;
return val;
}
- public UInt32 ReadILUInt32()
+ public uint ReadILUInt32()
{
if (_currentOffset + 4 > _ilBytes.Length)
ThrowHelper.ThrowInvalidProgramException();
- UInt32 val = (UInt32)(_ilBytes[_currentOffset] + (_ilBytes[_currentOffset + 1] << 8) + (_ilBytes[_currentOffset + 2] << 16) + (_ilBytes[_currentOffset + 3] << 24));
+ uint val = (uint)(_ilBytes[_currentOffset] + (_ilBytes[_currentOffset + 1] << 8) + (_ilBytes[_currentOffset + 2] << 16) + (_ilBytes[_currentOffset + 3] << 24));
_currentOffset += 4;
return val;
}