mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-16 03:34:53 +02:00
Fixed minor grammatical change.
This commit is contained in:
@@ -879,8 +879,8 @@ on a new line! ""Wow!"", the masses cried";
|
|||||||
bool Broken { get; } // interfaces can contain properties as well as methods & events
|
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, however
|
// Classes can inherit only one other class, but can implement any amount of interfaces,
|
||||||
// the base class name must be the first in the list and all interfaces follow
|
// however the base class name must be the first in the list and all interfaces follow
|
||||||
class MountainBike : Bicycle, IJumpable, IBreakable
|
class MountainBike : Bicycle, IJumpable, IBreakable
|
||||||
{
|
{
|
||||||
int damage = 0;
|
int damage = 0;
|
||||||
|
Reference in New Issue
Block a user