public void CallerInfoAttributesMethodTest()
        {
            var c = new CallerInfoAttribute();

            Debug.WriteLine(c.WhoCalledMe());

            Debug.WriteLine(c.WhatFileCalledMe());

            Debug.WriteLine(c.WhatLineCalledMe());
        }
Beispiel #2
0
        public void ExampleCallerMethod()
        {
            var c = new CallerInfoAttribute();

            Debug.WriteLine(c.WhoCalledMe());

            Debug.WriteLine(c.WhatFileCalledMe());

            Debug.WriteLine(c.WhatLineCalledMe());
        }