//Define the AirCraft Interface and Handler Object.
//Define the IAircraft interface to be used as the target interface, which represents the first adapter.
public interface IAircraft
{
bool Airborne { get; }
void TakeOff();
int Height { get; }
}
//The Aircraft class (object) represents a class to be adapted.
sealed class Aircraft : IAircraft
{
public Aircraft()
{
Height = 0;
Airborne = false;
}
public bool Airborne { get; private set; }
public int Height { get; private set; }
public void TakeOff()
{
Console.WriteLine("Aircraft engine takeoff!");
Airborne = true;
Height = 200;
}
}