All About Method Overloading in C#

Atul Sharma

Code used in this article for different scenarios of Method Overloading is available here on GitHUB.

Polymorphism is one of the most important pillars of object-oriented programming. It further gets categorized to static and dynamic polymorphism which respectively maps to method overloading and method overriding.

For this article, I have covered the scenario which I faced being on either side of the interview table and tried to cover all of the possible tricks and twists with method overloading but still, few may not be covered in this, so I will leave them on you to explore.

1.    Return type –

The basic definition of method overloading states that same method with different signatures. The compiler doesn’t consider return type. So this is a valid scenario –

       static void MethodOverloadingReturn()
        {
            Console.WriteLine("MethodOverloading with No Parameters");
        }

        static int MethodOverloadingReturn(string str)
        {
            Console.WriteLine("MethodOverloading with Object Parameters");
            return 0;
        }

This will not throw any exception and compile successfully and based on the call will call the respective method.

but if we have this scenario, where method name and input parameters are same, but return type is different –

        static void MethodOverloadingReturn(string strg)
        {
            Console.WriteLine("MethodOverloading with No Parameters");
            
        }

        static int MethodOverloadingReturn(string str)
        {
            Console.WriteLine("MethodOverloading with Object Parameters");
            return 0;
            
        }

We will get these two errors

  • Error CS0111 Type ‘Program’ already defines a member called ‘MethodOverloadingReturn’ with the same parameter types
  • Error CS0121 The call is ambiguous between the following methods or properties: ‘Program.MethodOverloadingReturn(string)’ and ‘Program.MethodOverloadingReturn(string)’

So with this we conclude that –

Same Method name, Different Input parameters, Any return type – Method Overloading
Same Method name, Same Input parameters, Different return type – Compilation Error

and it will be more clear from this table –

method overloading

2.    Different Parameters –

Methods with different parameters will exhibit Method overloading. As in this case, one with no parameter and another with one input parameter.

       static void MethodOverloading_Diff()
        {
            Console.WriteLine("MethodOverloading with No Parameters");
        }

        static void MethodOverloading_Diff(string str)
        {
            Console.WriteLine("MethodOverloading with String Parameters");
        }

3.    Parameter order –

Different order of parameters also enables the method overloading.

        static void MethodOverloading_Order(int i, string str)
        {
            Console.WriteLine("MethodOverloading with String Parameters");
        }

        static void MethodOverloading_Order(string str, int i)
        {
            Console.WriteLine("MethodOverloading with String Parameters");
        }

4.    Conversion between data types –

Till this point we saw simple scenario and now this one is going to be tricky. We know C# supports implicit and explicit conversion.

See also  Bank Reconciliation

In Implicit conversion, no special syntax required while for explicit conversion, we need cast expression.

For numeric conversion, it follows some rules, which you can read this MSDN article for more detail.

Please note some implicit numeric conversion may lead to data loss.

For example- we will take the case of int, float and double. Integer can be implicitly converted to float and double while float can be implicitly converted to double, but for any other conversion among these 3 types, we may have to do explicit conversion.

Now let us come back to our subject and we will consider this scenario –

        static void MethodOverloading_Conv(int i)
        {
            Console.WriteLine("MethodOverloading with int Parameters");
        }

        static void MethodOverloading_Conv(double d)
        {
            Console.WriteLine("MethodOverloading with double Parameters");
        }

Now I am going to call this

MethodOverloading_Conv(10);

Since we have two methods qualifying to be called (integer can be implicitly converted to double) but in my caller method I have integer, in this case compiler will decide in which scenario conversion is better. (Yes, conversion as compiler needs to decide). So, it will call method with int parameter.

Now let us deep dive in this case –

        static void MethodOverloading_Conv(double d, int i)
        {
            Console.WriteLine("MethodOverloading with double, int Parameters");
        }

        static void MethodOverloading_Conv(int i, double d)
        {
            Console.WriteLine("MethodOverloading with int,double Parameters");
        }

        static void MethodOverloading_Conv(int i1, int i2)
        {
            Console.WriteLine("MethodOverloading with int,int Parameters");
        }

And my call is

 MethodOverloading_Conv(5, 15);

Based on the above logic of best available conversion, you can easily decide it is going to call

MethodOverloading_Conv(int i1, int i2)

But to add another twist to it, what if I don’t have this

MethodOverloading_Conv(int i1, int i2)

Method available. Then compiler will get confused and give this error as in both methods, it must do one conversion.

Error CS0121 The call is ambiguous between the following methods or properties: ‘Program.MethodOverloading_Conv(double, int)’ and ‘Program.MethodOverloading_Conv(int, double)’

Now it will be clearer from this example –

I have these two methods –

        static void MethodOverloading_Conv(int i1, int i2, double dbl)
        {
            Console.WriteLine("MethodOverloading with int,int, double Parameters");
        }
        static void MethodOverloading_Conv(int i1, double i2, double dbl)
        {
            Console.WriteLine("MethodOverloading with int,double, double Parameters");
        }

And I am calling it from

          MethodOverloading(5,5,15);

i.e. all integer input parameters.

Now, for the first method, the compiler needs to do one conversion while the second method in the above scenario needs two conversions from int to double and hence first method (with one conversion) will be called i.e

           static void MethodOverloading_Conv(int i1, int i2, double dbl)

5.    Object type –

We all know all C# types derive from object, that means any type can be implicitly converted into object type.

See also  SOUND : An Effective Coding and Code Review Technique

Now consider this this scenario –

        static void MethodOverloading_Obj(string str, object obj)
        {
            Console.WriteLine("MethodOverloading with string, Object Parameters");
        }

        static void MethodOverloading_Obj(object obj1, object obj2)
        {
            Console.WriteLine("MethodOverloading with Object,Object Parameters");
        }

And I am calling this from these two methods –

            Call # 1 - MethodOverloading_Obj("Atul", true);
            Call # 2 - MethodOverloading_Obj(true, true);

The call number will call method can call both but since in the first method, one conversion is needed i.e. bool to object while for the second it will need two conversions, a string to object and a bool to object. And hence the first method will win here.

static void MethodOverloading_Obj(string str, object obj)

For Call # 2, second method will be called as compiler got no option of matching but to do 2 conversions.

6.    Named Parameters

Now consider this scenario for understanding named parameter in method overloading –

        static void MethodOverloading_named(int first, int second, int third)
        {
            Console.WriteLine("MethodOverloading with int,int,int Parameters");
        }

        static void MethodOverloading_named(double dFirst, double dSecond, double dThird)
        {
            Console.WriteLine("MethodOverloading with double,double,double Parameters");
        }

As we saw in previous scenario that, if we normally call method with 3 input integer type parameters i.e.

        MethodOverloading_named(10, 15, 14);

It will call first method without any doubt.

But if my calling is

        MethodOverloading_named(dFirst: 10, dThird: 13, dSecond: 15);

Then despite overhead of 3 conversions, compiler will call the method with 3 double parameters.

7.    Optional Parameters

Optional parameters in C# plays important role so I will explain this scenario as well in good detail –

        static void MethodOverloading_Optional(object str)
        {
            Console.WriteLine("MethodOverloading with object Parameters");
        }

        static void MethodOverloading_Optional(string str, int x = 5)
        {
            Console.WriteLine("MethodOverloading with str, int Parameters");
        }

And my call is

            MethodOverloading_Optional("AKS");
            MethodOverloading_Optional(true);

For Call #1, if the compiler calls the method with one parameter then it needs to do one conversion from string to Object. If It calls the method with two parameters then it will match the first parameter but will have to add value to the optional parameter, and hence it will call the method with 2 parameters.

For Call # 2, it will call method with one parameter for obvious reasons.

8.    Out and ref

Out and Ref are very important concept in C#. Let us examine in this example, how they work in overloading situation.

For this code snippet –

        static void MethodOverloadingRef(decimal d, int a)
        {

            Console.WriteLine("MethodOverloading with decimal,int Parameters");
        }
        static void MethodOverloadingRef(decimal d, out int a)
        {
            a = 10;
            Console.WriteLine("MethodOverloading with decimal,out-int Parameters");
        }

        static void MethodOverloadingOut(decimal d, ref int a)
        {
            a = 10;
            Console.WriteLine("MethodOverloading with decimal,ref-int Parameters");
        }

We will get compiler error as

‘Program’ cannot define an overloaded method that differs only on parameter modifiers ‘ref’ and ‘out’

 And for the reason, we need to examine the MSIL for this code segment

method overloading

It is evident from here that Ref and Out are converted to the same MSIL code and hence compiler couldn’t decide what to call and throws an error.

See also  C# Collections - Behind the Scene: A Must for Every C# Programmers

P.S. – I had to rename the method name so that code gets compiled and I can see the MSIL.

9 – Inheritance Scenario for Method Overloading

To get the insight of this, let us see this scenario –

    public class BaseClass
    {
        public void MethodOverloading(string str)
        {
            Console.WriteLine("From Base Class.");
        }
        public void MethodOverloading2(Object str)
        {
            Console.WriteLine("From Base Class.");
        }

        public virtual void MethodOverride(string s)
        {
            Console.WriteLine("From Base class");
        }
    }

    class DerivedClass : BaseClass
    {
        public  void MethodOverloading(object obj)
        {
            Console.WriteLine("From Derived Class.");
        }
        public void MethodOverloading2(string str)
        {
            Console.WriteLine("From Derived Class.");
        }
        public override void MethodOverride(string str)
        {
            Console.WriteLine("From Derived class -- Overridden Method");
        }
    }

and my caller program be like –

            //Scenario # 1
            DerivedClass dc = new DerivedClass();
            dc.MethodOverloading("ATUL");
            dc.MethodOverloading2("ATUL");

            //Scenario # 2
            BaseClass bc = new BaseClass();
            bc.MethodOverloading("ATUL");
            bc.MethodOverloading2("ATUL");

            //Scenario # 3
            BaseClass bcdc = new DerivedClass();
            bcdc.MethodOverloading("Atul");
            bcdc.MethodOverloading2("Atul");

Now let us examine them one by one –

In Scenario # 1, It will call the methods from Derived Class, irrespective of the fact that it needs implicit conversion or not. Compiler will see and find it, do the implicit conversion in Derived class and DONE !!

In Scenario # 2, It will call the methods from Base Class, irrespective of conversion.

In Scenario # 3, It will again call from Base class.

There is one very important observation here to talk about –

In the call (Scenario #1) – The compiler doesn’t even call the Overridden method, despite it has the full match on type with signature. Rather it goes to call the method where it had to convert the string to object.

With this we can infer the following outcomes –

  • Overloading will be supported in normal methods only.
  • For virtual and override, the method signature needs to be exactly the same, else it will be a compiler error. So no Method Overloading is possible in this case.
  • Try to keep the overloading at a class level only, NOT across Inheritance boundaries as it may go to any level.
  • Even if Method overloading is available across the inheritance limits, it will call the method from the type declared, as we saw in the above all 3 scenarios.

With this, I hope you got to learn something new. Comment below for any suggestions or feedback. You can experiment with the code here and explore more scenarios.