Esempio n. 1
0
        static void Main()
        {
            var test = new MethodOverloads();

            test.Foo(33);
            test.Foo("abc");
            test.Bar(44);
        }
Esempio n. 2
0
        static void Main()
        {
            var test = new MethodOverloads();

            test.Foo(33);
            test.Foo("abc");
            test.Foo(true);
            test.Bar(44);
            Console.ReadLine();
        }