Monday, March 3, 2008

Classes / Interfaces of C#

_____________________________________________

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 {
...
}


____________________________________________________________________

Note:Applicable for .net also asp.net.
____________________________________________________________________

No comments: