Exemple #1
0
        public void MakeSomeNoise()
        {
            SimpleFunctions sf = new SimpleFunctions();

            //Call class method
            sf.Handle();

            //Call extention method
            sf.Rollback("Revoked");

            //Extension method call chain
            sf.Clear()
            .Done()
            .Clear()
            .Done();
        }