mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-08 09:15:10 +00:00
10 lines
157 B
C#
10 lines
157 B
C#
namespace ICD.Common.Utils.Extensions
|
|
{
|
|
public static class UShortExtensions
|
|
{
|
|
public static bool ToBool(this ushort u)
|
|
{
|
|
return u != 0;
|
|
}
|
|
}
|
|
} |