@@ -591,7 +591,7 @@ public static bool IsControl(string s, int index)
591
591
{
592
592
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
593
593
}
594
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
594
+ if ( ( uint ) index >= ( uint ) s . Length )
595
595
{
596
596
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
597
597
}
@@ -606,7 +606,7 @@ public static bool IsDigit(string s, int index)
606
606
{
607
607
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
608
608
}
609
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
609
+ if ( ( uint ) index >= ( uint ) s . Length )
610
610
{
611
611
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
612
612
}
@@ -626,7 +626,7 @@ public static bool IsLetter(string s, int index)
626
626
{
627
627
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
628
628
}
629
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
629
+ if ( ( uint ) index >= ( uint ) s . Length )
630
630
{
631
631
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
632
632
}
@@ -647,7 +647,7 @@ public static bool IsLetterOrDigit(string s, int index)
647
647
{
648
648
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
649
649
}
650
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
650
+ if ( ( uint ) index >= ( uint ) s . Length )
651
651
{
652
652
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
653
653
}
@@ -667,8 +667,7 @@ public static bool IsLower(string s, int index)
667
667
{
668
668
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
669
669
}
670
-
671
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
670
+ if ( ( uint ) index >= ( uint ) s . Length )
672
671
{
673
672
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
674
673
}
@@ -710,7 +709,7 @@ public static bool IsNumber(string s, int index)
710
709
{
711
710
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
712
711
}
713
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
712
+ if ( ( uint ) index >= ( uint ) s . Length )
714
713
{
715
714
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
716
715
}
@@ -743,7 +742,7 @@ public static bool IsPunctuation(string s, int index)
743
742
{
744
743
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
745
744
}
746
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
745
+ if ( ( uint ) index >= ( uint ) s . Length )
747
746
{
748
747
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
749
748
}
@@ -788,7 +787,7 @@ public static bool IsSeparator(string s, int index)
788
787
{
789
788
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
790
789
}
791
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
790
+ if ( ( uint ) index >= ( uint ) s . Length )
792
791
{
793
792
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
794
793
}
@@ -813,7 +812,7 @@ public static bool IsSurrogate(string s, int index)
813
812
{
814
813
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
815
814
}
816
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
815
+ if ( ( uint ) index >= ( uint ) s . Length )
817
816
{
818
817
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
819
818
}
@@ -845,7 +844,7 @@ public static bool IsSymbol(string s, int index)
845
844
{
846
845
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
847
846
}
848
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
847
+ if ( ( uint ) index >= ( uint ) s . Length )
849
848
{
850
849
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
851
850
}
@@ -865,7 +864,7 @@ public static bool IsUpper(string s, int index)
865
864
{
866
865
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
867
866
}
868
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
867
+ if ( ( uint ) index >= ( uint ) s . Length )
869
868
{
870
869
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
871
870
}
@@ -885,7 +884,7 @@ public static bool IsWhiteSpace(string s, int index)
885
884
{
886
885
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
887
886
}
888
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
887
+ if ( ( uint ) index >= ( uint ) s . Length )
889
888
{
890
889
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
891
890
}
@@ -911,7 +910,7 @@ public static UnicodeCategory GetUnicodeCategory(string s, int index)
911
910
{
912
911
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
913
912
}
914
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
913
+ if ( ( uint ) index >= ( uint ) s . Length )
915
914
{
916
915
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
917
916
}
@@ -935,7 +934,7 @@ public static double GetNumericValue(string s, int index)
935
934
{
936
935
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
937
936
}
938
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
937
+ if ( ( uint ) index >= ( uint ) s . Length )
939
938
{
940
939
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
941
940
}
@@ -957,7 +956,7 @@ public static bool IsHighSurrogate(string s, int index)
957
956
{
958
957
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
959
958
}
960
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
959
+ if ( ( uint ) index >= ( uint ) s . Length )
961
960
{
962
961
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
963
962
}
@@ -979,7 +978,7 @@ public static bool IsLowSurrogate(string s, int index)
979
978
{
980
979
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
981
980
}
982
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
981
+ if ( ( uint ) index >= ( uint ) s . Length )
983
982
{
984
983
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
985
984
}
@@ -996,7 +995,7 @@ public static bool IsSurrogatePair(string s, int index)
996
995
{
997
996
ThrowHelper . ThrowArgumentNullException ( ExceptionArgument . s ) ;
998
997
}
999
- if ( ( ( uint ) index ) >= ( ( uint ) s . Length ) )
998
+ if ( ( uint ) index >= ( uint ) s . Length )
1000
999
{
1001
1000
ThrowHelper . ThrowArgumentOutOfRangeException ( ExceptionArgument . index ) ;
1002
1001
}
0 commit comments