Example #1
0
        public static Conditional ThenIf(this Conditional c, Func <bool> cond)
        {
            var c1 = Conditional.GetIf(cond);

            c.next = c1;
            return(c1);
        }