[csharp/pt-br] Update csharp-pt.html.markdown

Translation of comments.
This commit is contained in:
daniloyamauti 2018-10-31 08:41:41 -03:00 committed by GitHub
parent 4d9778c098
commit 8bad4d109c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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!