1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-04 05:47:53 +02:00

Merge pull request #3243 from arfurlaneto/patch-9

[csharp/pt-br] Missing translation
This commit is contained in:
Divay Prakash
2018-10-02 05:06:41 +05:30
committed by GitHub

View File

@@ -834,7 +834,7 @@ 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 // Classes podem herdar apenas de uma outra classe, mas podem implementar qualquer quantidade de interfaces.
class MountainBike : Bicycle, IJumpable, IBreakable class MountainBike : Bicycle, IJumpable, IBreakable
{ {
int damage = 0; int damage = 0;