diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-31 18:34:56 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 18:34:56 +0530 |
commit | 17062520dd32d798b8c90a009a85cece2fdc76c0 (patch) | |
tree | 1b0034c1fdd8c219844f1f376502991d20035bb6 /pt-br | |
parent | af0015f4ba3bc39f7f29f956d999ba13c8a285ef (diff) | |
parent | fd5ee982bc9f2f10bafb8b4d7cf15c15e646da10 (diff) |
Merge pull request #3369 from daniloyamauti/patch-8
[csharp/pt-br] Update csharp-pt.html.markdown
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index 80727424..56770f89 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -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 |