Inheritance/Multiple: Difference between revisions

Content deleted Content added
Blek (talk | contribs)
Added PowerShell
Line 344:
type Camera =
abstract takePicture : unit -> Picture
 
// an interface that inherits multiple interfaces
type Camera2 =
inherits System.ComponentModel.INotifyPropertyChanged
inherits Camera
 
// a class with an abstract method with a default implementation