C#

Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Monday, 27 June 2016

Compile time polymorphism question :- Interview Question

Will it compile ?

using System;

namespace Lesson1
{

    class Program
    {
        static void Main(string[] args)
        {
            Program.Add(5, 5);
        }
        static void Add(double x, int y)
        {
            Console.WriteLine(x + y);
        }
        static double Add(int x, double y)
        {
            return x + y;
        }

    }
}

Ans:- No


No comments:

Post a Comment