Example #1
0
File: O.cs Project: shangshen/cozy
 public static void Cozy()
 {
     O1ExceptionClasses.Cozy();
     O2CatchingExceptions.Cozy();
     O3UserDefinedException.Cozy();
     O4CallerInformation.Cozy();
 }
Example #2
0
        public static void Cozy()
        {
            Console.WriteLine("\n-----------------------------------------------");
            Console.WriteLine(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName);
            Console.WriteLine("-----------------------------------------------");

            var p = new O4CallerInformation();
            p.Log();
            p.SomeProperty = 33;

            Action a1 = () => p.Log();
            a1();
        }
Example #3
0
        public static void Cozy()
        {
            Console.WriteLine("\n-----------------------------------------------");
            Console.WriteLine(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName);
            Console.WriteLine("-----------------------------------------------");

            var p = new O4CallerInformation();

            p.Log();
            p.SomeProperty = 33;

            Action a1 = () => p.Log();

            a1();
        }