Exemplo n.º 1
0
        private static void TestSealed()
        {
            var action = new SealedAction();

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

            action.Invoke();
        }