summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/ListToBindableVectorViewAdapter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/ListToBindableVectorViewAdapter.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/ListToBindableVectorViewAdapter.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/ListToBindableVectorViewAdapter.cs b/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/ListToBindableVectorViewAdapter.cs
index b453d90ba1..98beaf22f2 100644
--- a/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/ListToBindableVectorViewAdapter.cs
+++ b/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/ListToBindableVectorViewAdapter.cs
@@ -32,9 +32,9 @@ namespace System.Runtime.InteropServices.WindowsRuntime
private static void EnsureIndexInt32(uint index, int listCapacity)
{
- // We use '<=' and not '<' becasue Int32.MaxValue == index would imply
- // that Size > Int32.MaxValue:
- if (((uint)Int32.MaxValue) <= index || index >= (uint)listCapacity)
+ // We use '<=' and not '<' becasue int.MaxValue == index would imply
+ // that Size > int.MaxValue:
+ if (((uint)int.MaxValue) <= index || index >= (uint)listCapacity)
{
Exception e = new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_IndexLargerThanMaxValue);
e.HResult = HResults.E_BOUNDS;