public void CallerInfoAttributesMethodTest() { var c = new CallerInfoAttribute(); Debug.WriteLine(c.WhoCalledMe()); Debug.WriteLine(c.WhatFileCalledMe()); Debug.WriteLine(c.WhatLineCalledMe()); }
public void ExampleCallerMethod() { var c = new CallerInfoAttribute(); Debug.WriteLine(c.WhoCalledMe()); Debug.WriteLine(c.WhatFileCalledMe()); Debug.WriteLine(c.WhatLineCalledMe()); }