Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0f2e8bb

Browse files
author
Ron Petrusha
authored
Merge pull request dotnet#2967 from carlossanlop/Rune.GetRuneAt
Missing returns in System.Text.Rune.GetRuneAt
2 parents f0e2c29 + 49d0b3e commit 0f2e8bb

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

xml/System.Text/Rune.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -530,14 +530,11 @@ This method has behavior equivalent to <xref:System.Globalization.CharUnicodeInf
530530
<param name="input">The string from which to create the rune.</param>
531531
<param name="index">The starting position in <paramref name="input" /> at which to create the rune.</param>
532532
<summary>Gets the <see cref="T:System.Text.Rune" /> that begins at a specified position in a string.</summary>
533-
<returns>To be added.</returns>
533+
<returns>The rune obtained from <paramref name="input" /> at the specified <paramref name="index" />.</returns>
534534
<remarks>To be added.</remarks>
535-
<exception cref="T:System.ArgumentNullException">
536-
<paramref name="input" /> is <see langword="null" />.</exception>
537-
<exception cref="T:System.ArgumentException">
538-
<paramref name="index" /> does not reference the start of a valid scalar value in <paramref name="input" />.</exception>
539-
<exception cref="T:System.ArgumentOutOfRangeException">
540-
<paramref name="index" /> is outside the range of <paramref name="input" />.</exception>
535+
<exception cref="T:System.ArgumentNullException"><paramref name="input" /> is <see langword="null" />.</exception>
536+
<exception cref="T:System.ArgumentException"><paramref name="index" /> does not reference the start of a valid scalar value in <paramref name="input" />.</exception>
537+
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index" /> is outside the range of <paramref name="input" />.</exception>
541538
</Docs>
542539
</Member>
543540
<Member MemberName="GetUnicodeCategory">

0 commit comments

Comments
 (0)