Пример #1
0
        public Matching <T, TResult> IfFailedMatch(Func <Exception, TResult> ifFailedMatch)
        {
            if (matched.IsFailedMatch)
            {
                action = LambdaFunctions.func(() => ifFailedMatch(matched.Exception)).Some();
            }

            return(this);
        }
Пример #2
0
        public Matching <T, TResult> IfMatched(Func <T, TResult> ifMatched)
        {
            if (matched.If(out var value))
            {
                action = LambdaFunctions.func(() => ifMatched(value)).Some();
            }

            return(this);
        }
Пример #3
0
        public static void PartTwoStart()
        {
            int    amount   = 50;
            string splitter = "=";

            Program.center(amount, "Start of The Second Part", "*");
            //////////////////////////////////////////////
            Program.center(amount, "TryCatchFinally", splitter);
            DiffExceptions.TryCatchWhen();
            try
            {
                DiffExceptions.TryFinally();
            }
            catch (Exception ex)
            {
                IOService.ShowUserStringWithLineBreak(string.Format("Exception ({0}) wasnt handled because of TryFinally construction", ex.Source));
            }
            Program.center(amount, "ExceptionProperties", splitter);
            DiffExceptions.ExceptionProperties();
            /////////////////////////////////////////////
            Program.center(amount, "Delegates", splitter);
            Delegates delegates = new Delegates();

            delegates.FirstExample();
            delegates.SecondExample();
            delegates.ThirdExample();
            delegates.ExampleNumberFour();
            delegates.ExampleNumberFive();
            delegates.ExampleNumberSix();
            delegates.ExampleNumberSeven();
            /////////////////////////////////////////////
            Program.center(amount, "Using of Delegates", splitter);
            State state = new State(100);

            state.RegisterState(ShowState);
            state.DoTheThing();
            state.DoTheThing();
            state.UnregisterState(ShowState);
            state.RegisterState(ShowStateRed);
            state.DoTheThing();
            /////////////////////////////////////////////
            Program.center(amount, "Using of AnonimMethods", splitter);
            AnonimMethods anonim = new AnonimMethods();

            anonim.StartExample();
            /////////////////////////////////////////////
            LambdaFunctions lambda = new LambdaFunctions();

            lambda.Start();
            /////////////////////////////////////////////
            Program.center(amount, "Using of Events", splitter);
            EventMain.MainEventExample();
            /////////////////////////////////////////////
            Program.center(amount, "Covariance and ContrCovariance", splitter);
            StudyCovariance covariance = new StudyCovariance();

            covariance.StartExample();
            /////////////////////////////////////////////
            Program.center(amount, "Delegates Action, Predicate, Func", splitter);
            ActionDel.StartExample();
            /////////////////////////////////////////////
            Program.center(amount, "Interfaces", splitter);
            Interfaces.StartExample();
            /////////////////////////////////////////////
            Program.center(amount, "The End of The Second Part", "*");
        }