diff options
| author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-11-24 12:07:17 +0530 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-24 12:07:17 +0530 | 
| commit | 89257e9c0f0ccfbb6c9efecd75da0ba4eadfe7e6 (patch) | |
| tree | 9a4e8abeebd9e9ee24ca51749bc618199078b8c0 | |
| parent | 39c7efbb81a408919b1190d7ee753d87718e554c (diff) | |
| parent | caf2531ad0a35a9253216c8af75a6a19d26b4ae1 (diff) | |
Merge pull request #3653 from daniloyamauti/patch-14
[csharp/pt-br] Missing translation
| -rw-r--r-- | pt-br/csharp-pt.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index 427dbba2..458e40fa 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -720,9 +720,9 @@ on a new line! ""Wow!"", the masses cried";              _speed -= decrement;          } -        // properties get/set values -        // when only data needs to be accessed, consider using properties. -        // properties may have either get or set, or both +        // propriedade recupera e/ou atribui valores (get/set).  +        // quando os dados precisam apenas ser acessados, considere o uso de propriedades. +        // uma propriedade pode ter "get" ou "set", ou ambos.          private bool _hasTassles; // private variable          public bool HasTassles // public accessor          { | 
