mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-08 17:24:49 +00:00
10 lines
176 B
C#
10 lines
176 B
C#
namespace ICD.Common.Utils.Extensions
|
|
{
|
|
public static class BoolExtensions
|
|
{
|
|
public static ushort ToUShort(this bool b)
|
|
{
|
|
return b ? (ushort)1 : (ushort)0;
|
|
}
|
|
}
|
|
} |