RosettaCodeData/Task/Inheritance-Multiple/C-sharp/inheritance-multiple.cs

12 lines
123 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
interface ICamera {
// ...
}
class MobilePhone {
// ...
}
class CameraPhone: ICamera, MobilePhone {
// ...
}