We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cd5dd4 commit ec80c83Copy full SHA for ec80c83
dotnet/src/dotnetframework/GxClasses/Core/GXUtils.cs
@@ -986,11 +986,8 @@ private static void RestoreEndOfString(GxRegexMatch values)
986
{
987
if (values != null)
988
989
- int idx = 0;
990
- foreach (string v in values.Groups)
991
- {
992
- values.Groups[idx] = RestoreEndOfString(v);
993
- }
+ for (int i=0; i < values.Groups.Count; i++)
+ values.Groups[i] = RestoreEndOfString(values.Groups[i]);
994
}
995
996
static public GxSimpleCollection<string> Split(string txt, string rex)
0 commit comments