@@ -6350,7 +6350,7 @@ int[,,] TDArray = new int[1,1,1];
6350
6350
<param name="array">The one-dimensional <see cref="T:System.Array" /> to reverse.</param>
6351
6351
<param name="index">The starting index of the section to reverse.</param>
6352
6352
<param name="length">The number of elements in the section to reverse.</param>
6353
- <summary>Reverses the sequence of the elements in a range of elements in the one-dimensional <see cref="T:System.Array" />.</summary>
6353
+ <summary>Reverses the sequence of a subset of the elements in the one-dimensional <see cref="T:System.Array" />.</summary>
6354
6354
<remarks>
6355
6355
<format type="text/markdown"><![CDATA[
6356
6356
@@ -6416,10 +6416,14 @@ int[,,] TDArray = new int[1,1,1];
6416
6416
<Parameter Name="array" Type="T[]" Index="0" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
6417
6417
</Parameters>
6418
6418
<Docs>
6419
- <typeparam name="T">To be added .</typeparam>
6420
- <param name="array">To be added .</param>
6421
- <summary>To be added .</summary>
6419
+ <typeparam name="T">The type of the elements in <paramref name="array" /> .</typeparam>
6420
+ <param name="array">The one-dimensional array of elements to reverse .</param>
6421
+ <summary>Reverses the sequence of the elements in the one-dimensional generic array .</summary>
6422
6422
<remarks>To be added.</remarks>
6423
+ <exception cref="T:System.ArgumentNullException">
6424
+ <paramref name="array" /> is <see langword="null" />.</exception>
6425
+ <exception cref="T:System.RankException">
6426
+ <paramref name="array" /> is multidimensional.</exception>
6423
6427
</Docs>
6424
6428
</Member>
6425
6429
<Member MemberName="Reverse<T>">
@@ -6454,12 +6458,24 @@ int[,,] TDArray = new int[1,1,1];
6454
6458
<Parameter Name="length" Type="System.Int32" Index="2" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
6455
6459
</Parameters>
6456
6460
<Docs>
6457
- <typeparam name="T">To be added .</typeparam>
6458
- <param name="array">To be added .</param>
6459
- <param name="index">To be added .</param>
6460
- <param name="length">To be added .</param>
6461
- <summary>To be added .</summary>
6461
+ <typeparam name="T">The type of the elements in <paramref name="array" /> .</typeparam>
6462
+ <param name="array">The one-dimensional array of elements to reverse .</param>
6463
+ <param name="index">The starting index of the section to reverse .</param>
6464
+ <param name="length">The number of elements in the section to reverse .</param>
6465
+ <summary>Reverses the sequence of a subset of the elements in the one-dimensional generic array .</summary>
6462
6466
<remarks>To be added.</remarks>
6467
+ <exception cref="T:System.ArgumentNullException">
6468
+ <paramref name="array" /> is <see langword="null" />.</exception>
6469
+ <exception cref="T:System.RankException">
6470
+ <paramref name="array" /> is multidimensional.</exception>
6471
+ <exception cref="T:System.ArgumentOutOfRangeException">
6472
+ <paramref name="index" /> is less than the lower bound of <paramref name="array" />.
6473
+
6474
+ -or-
6475
+
6476
+ <paramref name="length" /> is less than zero.</exception>
6477
+ <exception cref="T:System.ArgumentException">
6478
+ <paramref name="index" /> and <paramref name="length" /> do not specify a valid range in <paramref name="array" />.</exception>
6463
6479
</Docs>
6464
6480
</Member>
6465
6481
<MemberGroup MemberName="SetValue">
0 commit comments