Answers for "c# implement a superclass in subclass"

C#
-1

c# implement a superclass in subclass

class Sedan : Vehicle
{
}

// class Sedan will now inherit Vehicles' members

class Sedan : Vehicle, IAutomobile
{
}

// Sedan will now inherit Vehicles' members and promise to
//				  implement the functions of interface IAutomibile
Posted by: Guest on March-05-2020

Code answers related to "c# implement a superclass in subclass"

C# Answers by Framework

Browse Popular Code Answers by Language