(#15) Format xmldoc for byte extensions

This commit is contained in:
Oliver Booth 2021-07-20 00:51:27 +01:00
parent 6722c0185e
commit 7192b46e9f
No known key found for this signature in database
GPG Key ID: A4AC17007530E9B4
1 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
namespace X10D namespace X10D
{ {
/// <summary> /// <summary>
/// Extension methods for <see cref="byte" />. /// Extension methods for <see cref="byte" />.
@ -60,10 +60,9 @@ namespace X10D
/// <returns> /// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not zero, or <see langword="false" /> otherwise. /// <see langword="true" /> if <paramref name="value" /> is not zero, or <see langword="false" /> otherwise.
/// </returns> /// </returns>
/// <seealso cref="BooleanExtensions.BooleanExtensions.ToByte(bool)" /> /// <seealso cref="BooleanExtensions.ToByte(bool)" />
/// <example> /// <example>
/// The following example converts an array of <see cref="byte" /> values to <see cref="bool" /> values. /// The following example converts an array of <see cref="byte" /> values to <see cref="bool" /> values.
///
/// <code lang="csharp"> /// <code lang="csharp">
/// byte[] bytes = { byte.MinValue, 100, 200, byte.MaxValue }; /// byte[] bytes = { byte.MinValue, 100, 200, byte.MaxValue };
/// bool result; /// bool result;