Interfaces in c# | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Interfaces in c#

On the car dealership website, you can pre-order a car by specifying its color and equipment. The program you are given takes the color and the equipment type as input and pass them to constructor of already declared Car class. Implement IColor and IEquipment interfaces for the Car class and reimplement their GetColor and GetEquipment methods inside it. Each of them should output corresponding message about color/equipment (see sample output). Sample Input Blue Standard Sample Output Color: Blue using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { string color = Console.ReadLine(); string equipment = Console.ReadLine(); Car car = new Car(color, equipment); car.GetColor(); car.GetEquipment(); } } public interface IColor { void GetColor(); } public interface IEquipment { void GetEquipment(); } //implement IColor & IEquipment interfaces public class Car { public string color; public string equipment; public Car(string color, string equipment) { this.color = color; this.equipment = equipment; } //reimplement this method public void GetColor() { } //reimplement this method public void GetEquipment() { } } }

10th Dec 2022, 7:23 AM
Andrei Stancu
Andrei Stancu - avatar
1 Resposta
+ 3
public class Car : IColor, IEquipment { public string color; public string equipment; public Car(string color, string equipment) { this.color = color; this.equipment = equipment; } public void GetColor() { Console.WriteLine("Color: " + this.color); } public void GetEquipment() { Console.WriteLine("Equipment: " + this.equipment); } }
10th Dec 2022, 8:33 AM
CalviÕ²
CalviÕ² - avatar