Example #1
0
 public static string ToPrettyString(this DwordBool dwBool) => dwBool.IsTrue() ? TRUE : FALSE;
Example #2
0
 public static bool IsTrue(this DwordBool dwBool) => (dwBool & DwordBool.TrueMask) != DwordBool.False;