Q:

C# program to implement the same method in multiple classes

0

C# program to implement the same method in multiple classes

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to implement the same method in multiple classes is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to implement the same method in multiple classes.

using System;

interface MyInterface
{
    //Method Declaration
    void Method();
}

class Sample1 : MyInterface
{
    //Method definition
    public void Method()
    {
        Console.WriteLine("Sample1:Method() called");
    }    
}

class Sample2 : MyInterface
{
    //Method definition
    public void Method()
    {
        Console.WriteLine("Sample2:Method() called");
    }    
}

class Sample3 : MyInterface
{
    //Method definition
    public void Method()
    {
        Console.WriteLine("Sample3:Method() called");
    }    
}

class Program
{
    public static void Main(String[] args)
    {
        MyInterface M;
        
        M = new Sample1();
        M.Method();

        M = new Sample2();
        M.Method();

        M = new Sample3();
        M.Method();
    }
}

Output:

Sample1:Method() called
Sample2:Method() called
Sample3:Method() called
Press any key to continue . . .

Explanation:

Here, we created an interface MyInterface that contains the declaration of the method Method(). Then we created three classes Sample1Sample2, and Sample3, and we implemented the Method() in all three classes.

Now look to the Program class, it contains the Main() method, the Main() method is the entry point for the program. Here, we created the reference M of MyInterface and then initialized M by objects of all classes one by one and call implemented methods that will print corresponding messages on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | Class, Object, Methods

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to implement multiple interfaces in the... >>
<< C# program to demonstrate the simple interface...