summaryrefslogtreecommitdiffhomepage
path: root/pt-br
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2018-10-31 18:33:53 +0530
committerGitHub <noreply@github.com>2018-10-31 18:33:53 +0530
commitaf0015f4ba3bc39f7f29f956d999ba13c8a285ef (patch)
tree8aa48adce6b74b928d458e39c02ead352ae7ec0e /pt-br
parent7fe470df9ef3a6b0677edc1cf94f1d0fe95acc8d (diff)
parent8bad4d109cff8165d1dddf5796db41a4f8273128 (diff)
Merge pull request #3368 from daniloyamauti/patch-7
[csharp/pt-br] Update csharp-pt.html.markdown
Diffstat (limited to 'pt-br')
-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 f0d01e6e..80727424 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!