public static Switch Case <T>(this Switch s, Action <T> a, bool fallThrough) where T : class { return(Case(s, o => true, a, fallThrough)); }
public static Switch Case <T>(this Switch s, Func <T, bool> c, Action <T> a) where T : class { return(Case(s, c, a, false)); }
public static Switch Case <T>(this Switch s, Action <T> a) where T : class { return(Case(s, o => true, a, false)); }