Exemplo n.º 1
0
        public void InvokeMethodAllInOne()
        {
            var instance = new MyClassOfMethods();
            var argument = new MyThirdClass();

            instance.InvokeMethodMatchingParameters(argument);
        }
Exemplo n.º 2
0
        public void FactInherited()
        {
            var instance = new MyClassOfMethods();
            var argument = new MyThirdClass();

            instance.MethodE(argument);

            Test(instance, argument);
        }