Merge pull request #3369 from daniloyamauti/patch-8

[csharp/pt-br] Update csharp-pt.html.markdown
This commit is contained in:
Divay Prakash 2018-10-31 18:34:56 +05:30 committed by GitHub
commit 17062520dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -730,10 +730,10 @@ on a new line! ""Wow!"", the masses cried";
set { _hasTassles = value; }
}
// You can also define an automatic property in one line
// this syntax will create a backing field automatically.
// You can set an access modifier on either the getter or the setter (or both)
// to restrict its access:
// Você também pode definir uma propriedade automática em uma linha
        // Esta sintaxe criará um campo de apoio automaticamente.
        // Você pode definir um modificador de acesso no getter ou no setter (ou ambos)
        // para restringir seu acesso:
public bool IsBroken { get; private set; }
// Properties can be auto-implemented