diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-31 18:32:32 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 18:32:32 +0530 |
commit | 7fe470df9ef3a6b0677edc1cf94f1d0fe95acc8d (patch) | |
tree | 705fc77e0bff8ecf93db9727d0c8179849f90b72 | |
parent | 4d9778c0988c324d0e520fd460026b39f9f73ccf (diff) | |
parent | f08c02338ae371ecffe07f18a11caee64100b8b1 (diff) |
Merge pull request #3367 from ferfedel/patch-6
[csharp/pt-br] Missing translation
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index be14a1c8..f0d01e6e 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -294,9 +294,9 @@ on a new line! ""Wow!"", the masses cried"; case 3: monthString = "March"; break; - // You can assign more than one case to an action - // But you can't add an action without a break before another case - // (if you want to do this, you would have to explicitly add a goto case x + // Você pode declarar mais de um "case" para uma ação + // Mas você não pode adicionar uma ação sem um "break" antes de outro "case" + // (se você quiser fazer isso, você tem que explicitamente adicionar um "goto case x") case 6: case 7: case 8: |