Samir Bhogayta
Can we call a base class method without creating instance?
By Samir Bhogayta in C# on Jun 25 2016
  • abhijeet rana
    Jan, 2018 9

    public class Person{protected string ssn = "444-55-6666";protected string name = "John L. Malgraine";public virtual void GetInfo(){Console.WriteLine("Name: {0}", name);Console.WriteLine("SSN: {0}", ssn);}}class Employee : Person{public string id = "ABC567EFG";public override void GetInfo(){// Calling the base class GetInfo method: base.GetInfo();Console.WriteLine("Employee ID: {0}", id);}}class TestClass{static void Main(){Employee E = new Employee();E.GetInfo();}}/* Output Name: John L. Malgraine SSN: 444-55-6666 Employee ID: ABC567EFG */

    • 0
  • abhijeet rana
    Jan, 2018 9

    public class Person{protected string ssn = "444-55-6666";protected string name = "John L. Malgraine";public virtual void GetInfo(){Console.WriteLine("Name: {0}", name);Console.WriteLine("SSN: {0}", ssn);}}class Employee : Person{public string id = "ABC567EFG";public override void GetInfo(){// Calling the base class GetInfo method: base.GetInfo();Console.WriteLine("Employee ID: {0}", id);}}class TestClass{static void Main(){Employee E = new Employee();E.GetInfo();}}/* Output Name: John L. Malgraine SSN: 444-55-6666 Employee ID: ABC567EFG */

    • 0
  • Mukesh Kumar
    Aug, 2017 31

    By using static

    • 0
  • Naveen Bisht
    Feb, 2017 16

    can you give an example please.

    • 0
  • Samir Bhogayta
    Jun, 2016 25

    It is possible if it’s a static method. It is possible by inheriting from that class also.It is possible from derived classes using base keyword.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS