diff options
author | daniloyamauti <33129352+daniloyamauti@users.noreply.github.com> | 2018-10-31 08:41:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 08:41:41 -0300 |
commit | 8bad4d109cff8165d1dddf5796db41a4f8273128 (patch) | |
tree | f10d5721a6d726e42db458201b79f92747e13339 /pt-br | |
parent | 4d9778c0988c324d0e520fd460026b39f9f73ccf (diff) |
[csharp/pt-br] Update csharp-pt.html.markdown
Translation of comments.
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index be14a1c8..c310ce2e 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -522,7 +522,7 @@ on a new line! ""Wow!"", the masses cried"; foreach (var key in responses.Keys) Console.WriteLine("{0}:{1}", key, responses[key]); - // DYNAMIC OBJECTS (great for working with other languages) + // OBJETOS DINÂMICOS (ótimo para trabalhar com outros idiomas) dynamic student = new ExpandoObject(); student.FirstName = "First Name"; // No need to define class first! |