[Modify] Edit it

This commit is contained in:
sta 2019-04-06 17:20:10 +09:00
parent eac39656fd
commit a8f1e70d99

View File

@ -525,16 +525,16 @@ namespace WebSocketSharp.Net
} }
/// <summary> /// <summary>
/// Copies the elements of the collection to the specified <see cref="Array"/>, starting at /// Copies the elements of the collection to the specified array,
/// the specified <paramref name="index"/> in the <paramref name="array"/>. /// starting at the specified index.
/// </summary> /// </summary>
/// <param name="array"> /// <param name="array">
/// An <see cref="Array"/> that represents the destination of the elements copied from /// An <see cref="Array"/> that specifies the destination of
/// the collection. /// the elements copied from the collection.
/// </param> /// </param>
/// <param name="index"> /// <param name="index">
/// An <see cref="int"/> that represents the zero-based index in <paramref name="array"/> /// An <see cref="int"/> that specifies the zero-based index in
/// at which copying begins. /// the array at which copying starts.
/// </param> /// </param>
/// <exception cref="ArgumentNullException"> /// <exception cref="ArgumentNullException">
/// <paramref name="array"/> is <see langword="null"/>. /// <paramref name="array"/> is <see langword="null"/>.
@ -550,13 +550,12 @@ namespace WebSocketSharp.Net
/// -or- /// -or-
/// </para> /// </para>
/// <para> /// <para>
/// The number of elements in the collection is greater than the available space from /// The space from <paramref name="index"/> to the end of
/// <paramref name="index"/> to the end of the destination <paramref name="array"/>. /// <paramref name="array"/> is not enough to copy to.
/// </para> /// </para>
/// </exception> /// </exception>
/// <exception cref="InvalidCastException"> /// <exception cref="InvalidCastException">
/// The elements in the collection cannot be cast automatically to the type of the destination /// The element type of <paramref name="array"/> cannot be assigned.
/// <paramref name="array"/>.
/// </exception> /// </exception>
public void CopyTo (Array array, int index) public void CopyTo (Array array, int index)
{ {