public void Test_Bool() { sbyte posValue = 2; sbyte zeroValue = 0; sbyte negValue = -2; Debug.Assert(posValue.Bool()); Debug.Assert(!zeroValue.Bool()); Debug.Assert(!negValue.Bool()); }