1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-10 00:35:42 +00:00

(#15) Unsigned are in signed namespace

This commit is contained in:
Oliver Booth 2021-04-02 12:14:33 +01:00
parent 6e0255f6cf
commit b36638d4df

View File

@ -49,7 +49,7 @@ namespace X10D.BooleanExtensions
/// // True converts to 1.
/// </code>
/// </example>
/// <seealso cref="UInt16Extensions.UInt16Extensions.ToBoolean(ushort)" />
/// <seealso cref="Int16Extensions.UInt16Extensions.ToBoolean(ushort)" />
[CLSCompliant(false)]
public static ushort ToUInt16(this bool value)
{
@ -75,7 +75,7 @@ namespace X10D.BooleanExtensions
/// // True converts to 1.
/// </code>
/// </example>
/// <seealso cref="UInt32Extensions.UInt32Extensions.ToBoolean(uint)" />
/// <seealso cref="Int32Extensions.UInt32Extensions.ToBoolean(uint)" />
[CLSCompliant(false)]
public static uint ToUInt32(this bool value)
{