_____________________________________________
Classes / Interfaces of C#.
_____________________________________________
Accessibility keywords
public
private
internal
protected
protected internal
static
// Inheritance
class FootballGame : Competition {
...
}
// Interface definition
interface IAlarmClock {
...
}
// Extending an interface
interface IAlarmClock : IClock {
...
}
// Interface implementation
class WristWatch : IAlarmClock, ITimer {
...
}
____________________________________________________________________
____________________________________________________________________
No comments:
Post a Comment