Example #1
0
        private static void TestSealed()
        {
            var action = new SealedAction();

            action.Invoke();
        }
Example #2
0
 private static void TestArgumentSealed(SealedAction action)
 {
     action.Invoke();
 }
Example #3
0
        private static void TestInterface()
        {
            IAction action = new SealedAction();

            action.Invoke();
        }