diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-04 08:37:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 08:37:52 -0700 |
commit | 9fd64e502ab7c389cffd08de10df713cd832f5c3 (patch) | |
tree | 84a9de8fe3b3d260ac1f202daf15925061224b80 | |
parent | ffa3f1292572d81c849d49efdf0eb7f186274fb6 (diff) | |
parent | 26db60dad15a5fb2003715b0fc376c9086a86fa3 (diff) |
Merge pull request #4665 from thiagola92/csharp-pt
[csharp/pt-br] Update csharp-pt.html.markdown
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index 87e5b3a4..d464a639 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -252,7 +252,7 @@ on a new line! ""Wow!"", the masses cried"; { // Inicia a interação 100 vezes, fooDoWhile 0->99 if (false) - continue; // pule a intereção atual para apróxima + continue; // pule a intereção atual para a próxima fooDoWhile++; @@ -269,7 +269,7 @@ on a new line! ""Wow!"", the masses cried"; // For Each Loop // Estrutura do foreach => foreach(<Tipo Iterador> <Nome do Iterador> in <enumerable>) - // O laço foreach percorre sobre qualquer objeto que implementa IEnumerable ou IEnumerable<T> + // O laço foreach percorre sobre qualquer objeto que implementa IEnumerable ou IEnumerable<T> // Toda a coleção de tipos (Array, List, Dictionary...) no .Net framework // implementa uma ou mais destas interfaces. // (O ToCharArray() pode ser removido, por que uma string também implementa IEnumerable) |