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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Bowyer-Smyth <bbowyersmyth@live.com.au>2016-01-13 10:17:59 +0300
committerBruce Bowyer-Smyth <bbowyersmyth@live.com.au>2016-01-13 10:17:59 +0300
commita5f5230888d7f1fbd32512ebd1fbe7ae672fbe04 (patch)
tree9931426bc711c4a08b614da6206e7a32a2323dba /src
parent6f8edab90980ad32ec0b1da7d9f0847312df662d (diff)
Provide paramName for ArgumentOutOfRangeException within IndexOfAny
Diffstat (limited to 'src')
-rw-r--r--src/System.Private.CoreLib/src/System/String.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/src/System/String.cs b/src/System.Private.CoreLib/src/System/String.cs
index b8c0a4825..e6245e151 100644
--- a/src/System.Private.CoreLib/src/System/String.cs
+++ b/src/System.Private.CoreLib/src/System/String.cs
@@ -2034,7 +2034,7 @@ namespace System
throw new ArgumentNullException("anyOf");
if (startIndex < 0 || startIndex > Length)
- throw new ArgumentOutOfRangeException();
+ throw new ArgumentOutOfRangeException("startIndex", SR.ArgumentOutOfRange_Index);
if (count < 0 || count > Length - startIndex)
throw new ArgumentOutOfRangeException("count", SR.ArgumentOutOfRange_Count);