[Modify] Edit it

This commit is contained in:
sta 2017-12-13 16:05:07 +09:00
parent 10761d9e3f
commit 5e19058c40

View File

@ -1867,19 +1867,23 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Converts the specified <paramref name="array"/> to a <see cref="string"/> that /// Converts the specified array to a <see cref="string"/>.
/// concatenates the each element of <paramref name="array"/> across the specified
/// <paramref name="separator"/>.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// A <see cref="string"/> converted from <paramref name="array"/>, /// <para>
/// or <see cref="String.Empty"/> if <paramref name="array"/> is empty. /// A <see cref="string"/> converted by concatenating each element of
/// <paramref name="array"/> across <paramref name="separator"/>.
/// </para>
/// <para>
/// An empty string if <paramref name="array"/> is an empty array.
/// </para>
/// </returns> /// </returns>
/// <param name="array"> /// <param name="array">
/// An array of T to convert. /// An array of T to convert.
/// </param> /// </param>
/// <param name="separator"> /// <param name="separator">
/// A <see cref="string"/> that represents the separator string. /// A <see cref="string"/> used to separate each element of
/// <paramref name="array"/>.
/// </param> /// </param>
/// <typeparam name="T"> /// <typeparam name="T">
/// The type of elements in <paramref name="array"/>. /// The type of elements in <paramref name="array"/>.