namespace ICD.Common.Utils.Extensions { public static class UShortExtensions { public static bool ToBool(this ushort u) { return u != 0; } } }