summaryrefslogtreecommitdiffhomepage
path: root/pt-br/csharp-pt.html.markdown
diff options
context:
space:
mode:
authordaniloyamauti <33129352+daniloyamauti@users.noreply.github.com>2018-10-31 08:41:41 -0300
committerGitHub <noreply@github.com>2018-10-31 08:41:41 -0300
commit8bad4d109cff8165d1dddf5796db41a4f8273128 (patch)
treef10d5721a6d726e42db458201b79f92747e13339 /pt-br/csharp-pt.html.markdown
parent4d9778c0988c324d0e520fd460026b39f9f73ccf (diff)
[csharp/pt-br] Update csharp-pt.html.markdown
Translation of comments.
Diffstat (limited to 'pt-br/csharp-pt.html.markdown')
-rw-r--r--pt-br/csharp-pt.html.markdown2
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!