Пример #1
0
            public BarAttribute()
            {
                // Let's do this one more time to make sure we catch everything
                var str = typeof(KarAttribute).ToString();

                MethodsUsedFromLateMarking.Method2();
            }
Пример #2
0
            public FooAttribute()
            {
                // This ctor should be marked lazy.  So let's use another attribute type here which should then trigger that attribute
                // to be marked
                var str = typeof(BarAttribute).ToString();

                MethodsUsedFromLateMarking.Method1();
            }
Пример #3
0
 public KarAttribute()
 {
     MethodsUsedFromLateMarking.Method3();
 }