2 instantiations of MatchCollection
System.Text.RegularExpressions (2)
83 references to MatchCollection
aspire (2)
Aspire.EndToEnd.Tests (1)
Aspire.Templates.Tests (2)
cdac-build-tool (1)
dotnet-dev-certs (1)
dotnet-svcutil-lib (2)
Microsoft.AspNetCore.DeveloperCertificates.XPlat (1)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Microsoft.Build (5)
Microsoft.CodeAnalysis (3)
Microsoft.CodeAnalysis.CodeStyle (1)
Microsoft.CodeAnalysis.Features (1)
Microsoft.CodeAnalysis.ResxSourceGenerator (1)
Microsoft.CodeAnalysis.Workspaces (1)
Microsoft.DotNet.Arcade.Sdk (1)
Microsoft.Extensions.AI.OpenAI.Tests (1)
Microsoft.Maui.Controls (2)
Microsoft.ML.TestFramework (4)
netstandard (1)
RepoTasks (1)
System (1)
System.Private.Xml (1)
System.Text.RegularExpressions (48)
System\Text\RegularExpressions\Regex.Match.cs (25)
595/// <see cref="MatchCollection"/> object. Accessing members of this collection such as
596/// <see cref="MatchCollection.Count"/> and <see cref="MatchCollection.CopyTo(System.Array, int)"/> causes the collection to
603/// operation is performed on the <see cref="MatchCollection"/> object returned by this method, if a
607public static MatchCollection Matches(string input, [StringSyntax(StringSyntaxAttribute.Regex)] string pattern) =>
640/// returned <see cref="MatchCollection"/> object. Accessing members of this collection such as
641/// <see cref="MatchCollection.Count"/> and <see cref="MatchCollection.CopyTo(System.Array, int)"/> causes the collection to
648/// thrown when an operation is performed on the <see cref="MatchCollection"/> object returned by this
652public static MatchCollection Matches(string input, [StringSyntax(StringSyntaxAttribute.Regex, nameof(options))] string pattern, RegexOptions options) =>
689/// populate the returned <see cref="MatchCollection"/> object. Accessing members of this collection
690/// such as <see cref="MatchCollection.Count"/> and <see cref="MatchCollection.CopyTo(System.Array, int)"/> causes the
698/// is performed on the <see cref="MatchCollection"/> object returned by this method, if a matching
702public static MatchCollection Matches(string input, [StringSyntax(StringSyntaxAttribute.Regex, nameof(options))] string pattern, RegexOptions options, TimeSpan matchTimeout) =>
722/// <see cref="MatchCollection"/> object. Accessing members of this collection such as
723/// <see cref="MatchCollection.Count"/> and <see cref="MatchCollection.CopyTo(System.Array, int)"/> causes the collection to
730/// is performed on the <see cref="MatchCollection"/> object returned by this method, if the
735public MatchCollection Matches(string input)
771/// <see cref="MatchCollection"/> object. Accessing members of this collection such as
772/// <see cref="MatchCollection.Count"/> and <see cref="MatchCollection.CopyTo(System.Array, int)"/> causes the collection to
779/// operation is performed on the <see cref="MatchCollection"/> object returned by this method, if the
784public MatchCollection Matches(string input, int startat)