Skip to content

Commit e2698d2

Browse files
Commenting Fill<T>(T[], T, Int32, Int32) overload (#3245)
* Commenting Fill<T>(T[], T, Int32, Int32) overload Added description to parameters and summary. * Updated comments Updated wording of the description to match commenting of similar methods. * Removed bad XML element. * Update xml/System/Array.xml Co-Authored-By: Andy De George <[email protected]> * Update xml/System/Array.xml Co-Authored-By: Andy De George <[email protected]>
1 parent 7ae2979 commit e2698d2

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

xml/System/Array.xml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2766,10 +2766,10 @@
27662766
<Parameter Name="value" Type="T" Index="1" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
27672767
</Parameters>
27682768
<Docs>
2769-
<typeparam name="T">To be added.</typeparam>
2770-
<param name="array">To be added.</param>
2771-
<param name="value">To be added.</param>
2772-
<summary>To be added.</summary>
2769+
<typeparam name="T">The type of the elements of the array.</typeparam>
2770+
<param name="array">The <see cref="T:System.Array" /> to be filled.</param>
2771+
<param name="value">The new value for the elements in the specified range.</param>
2772+
<summary>Assigns the given <paramref name="value"/> of type <typeparamref name="T"/> to the elements of the specified <paramref name="array"/>.</summary>
27732773
<remarks>To be added.</remarks>
27742774
</Docs>
27752775
</Member>
@@ -2806,12 +2806,13 @@
28062806
<Parameter Name="count" Type="System.Int32" Index="3" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
28072807
</Parameters>
28082808
<Docs>
2809-
<typeparam name="T">To be added.</typeparam>
2810-
<param name="array">To be added.</param>
2811-
<param name="value">To be added.</param>
2812-
<param name="startIndex">To be added.</param>
2813-
<param name="count">To be added.</param>
2814-
<summary>To be added.</summary>
2809+
<typeparam name="T">The type of the elements of the array.</typeparam>
2810+
<param name="array">The <see cref="T:System.Array" /> to be filled.</param>
2811+
<param name="value">The new value for the elements in the specified range.</param>
2812+
<param name="startIndex">A 32-bit integer that represents the index in the <see cref="T:System.Array" /> at which filling begins.</param>
2813+
<param name="count">The number of elements to copy.</param>
2814+
<summary>Assigns the given <paramref name="value"/> of type <typeparamref name="T"/> to the elements of the specified <paramref name="array"/> which are
2815+
within the range of <paramref name="startIndex"/> (inclusive) and the next <paramref name="count"/> number of indices.</summary>
28152816
<remarks>To be added.</remarks>
28162817
</Docs>
28172818
</Member>

0 commit comments

Comments
 (0)