Example #1
0
        public static Conditional ThenFor(this Conditional c, float seconds)
        {
            var c1 = Conditional.For(seconds);

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