using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BS.Shared.Extensions { public static class BoolExtensions { /// /// Wenn "a" wahr ist, dann muss auch "b" wahr sein. /// /// /// /// public static bool Implies(this bool a, bool b) { return !a || b; } } }