Skip to content

Commit 96c96e1

Browse files
Better docs.
1 parent 2867022 commit 96c96e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/Extensions.ByteArray.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Open.Collections;
77
public static partial class Extensions
88
{
99
/// <summary>
10-
/// Converts a string to a byte array.
10+
/// Converts a string to a <see cref="byte"/> array.
1111
/// </summary>
1212
/// <param name="value">The string value.</param>
1313
/// <param name="encoding">Default is UTF8.</param>
@@ -20,7 +20,7 @@ public static byte[] ToByteArray(this string value, Encoding? encoding = null)
2020
}
2121

2222
/// <summary>
23-
/// Converts a string to a sbyte array.
23+
/// Converts a string to a <see cref="sbyte"/> array.
2424
/// </summary>
2525
/// <param name="value">The string value.</param>
2626
/// <param name="encoding">Default is UTF8.</param>
@@ -33,7 +33,7 @@ public static sbyte[] ToSbyteArray(this string value, Encoding? encoding = null)
3333
}
3434

3535
/// <summary>
36-
/// Directly converts a byte array (byte-by-byte) to an sbyte array.
36+
/// Directly converts a <see cref="byte"/> array (byte-by-byte) to an <see cref="sbyte"/> array.
3737
/// </summary>
3838
/// <param name="bytes">The bytes.</param>
3939
public static sbyte[] ToSbyteArray(this byte[] bytes)

0 commit comments

Comments
 (0)