You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Concatenates the current <typeparamref name="T"/> array with another <typeparamref name="T"/> array.
50
+
/// </summary>
51
+
/// <param name="other">The other <typeparamref name="T"/> array to concatenate with the current <typeparamref name="T"/> array.</param>
52
+
/// <returns>Returns a new <typeparamref name="T"/> array, consisting of the current <typeparamref name="T"/> array concatenated with the other <typeparamref name="T"/> array.</returns>
/// Obtains the <see cref="string"/> representation of the current <see cref="T:Byte[]"/>.
57
+
/// Provides extension methods for <see cref="byte"/> arrays.
56
58
/// </summary>
57
-
/// <param name="array">The <see cref="T:Byte[]"/> instance from which to obtain a <see cref="string"/> representation.</param>
58
-
/// <param name="encoding">The <see cref="Encoding"/> which will be used to convert the current <see cref="T:Byte[]"/> into a <see cref="string"/> representation.</param>
59
-
/// <returns>Returns the <see cref="string"/> representation of the current <see cref="T:Byte[]"/>.</returns>
/// <param name="array">The current <see cref="byte"/> array.</param>
60
+
extension(byte[]array)
61
+
{
62
+
/// <summary>
63
+
/// Obtains the <see cref="string"/> representation of the current <see cref="byte"/> array.
64
+
/// </summary>
65
+
/// <param name="encoding">The <see cref="Encoding"/> which will be used to convert the current <see cref="byte"/> array into a <see cref="string"/> representation.</param>
66
+
/// <returns>Returns the <see cref="string"/> representation of the current <see cref="byte"/> array.</returns>
0 commit comments