mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
Added detail on C# single inheritance
Clarified that the base class name must be the first thing listed
This commit is contained in:
parent
8592f26199
commit
d97eaa51d2
@ -837,7 +837,8 @@ on a new line! ""Wow!"", the masses cried";
|
||||
bool Broken { get; } // interfaces can contain properties as well as methods & events
|
||||
}
|
||||
|
||||
// Class can inherit only one other class, but can implement any amount of interfaces
|
||||
// Class can inherit only one other class, but can implement any amount of interfaces, however
|
||||
// the base class name must be the first in the list and all interfaces follow
|
||||
class MountainBike : Bicycle, IJumpable, IBreakable
|
||||
{
|
||||
int damage = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user