Skip to content

Port System.Text.RegularExpressions new docs #10160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</Attribute>
</Attributes>
<Docs>
<summary>To be added.</summary>
<summary>Represents an enumerator containing the set of splits around successful matches found by iteratively applying a regular expression pattern to the input span.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
Expand All @@ -57,9 +57,10 @@
<ReturnType>System.Range</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<summary>Gets the <see cref="T:System.Text.RegularExpressions.ValueMatch" /> element at the current position of the enumerator.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">Enumeration has either not started or has already finished.</exception>
</Docs>
</Member>
<Member MemberName="GetEnumerator">
Expand All @@ -85,8 +86,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<summary>Provides an enumerator that iterates through the splits in the input span.</summary>
<returns>A copy of this enumerator.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand All @@ -107,8 +108,9 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<summary>Advances the enumerator to the next split.</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator cannot find additional matches.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
Loading