Beispiel #1
0
 public static void Cozy()
 {
     O1ExceptionClasses.Cozy();
     O2CatchingExceptions.Cozy();
     O3UserDefinedException.Cozy();
     O4CallerInformation.Cozy();
 }
Beispiel #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();
        }
Beispiel #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();
        }