using System; using System.Collections.Generic; public class EventInfoTestClass { static EventInfoTestClass () { string s = System.Environment.StackTrace; } } class Test { static void Main () { TestEventSubscription (); } public static void TestEventSubscription () { new EventInfoTestClass (); } }