RosettaCodeData/Task/Inheritance-Multiple/C-sharp/inheritance-multiple.cs
2023-07-01 13:44:08 -04:00

11 lines
123 B
C#

interface ICamera {
// ...
}
class MobilePhone {
// ...
}
class CameraPhone: ICamera, MobilePhone {
// ...
}