summaryrefslogtreecommitdiffhomepage
path: root/pt-br
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2019-11-24 12:07:32 +0530
committerGitHub <noreply@github.com>2019-11-24 12:07:32 +0530
commit7045e651d2a0735fc27ab3b643579adf7662f3d8 (patch)
tree924d3dd0887340db839d1278919e467c7a8af89b /pt-br
parent89257e9c0f0ccfbb6c9efecd75da0ba4eadfe7e6 (diff)
parent35472772e3fff1759e9cde9c65332fba4cc8fe68 (diff)
Merge pull request #3651 from daniloyamauti/patch-12
[csharp/pt-br] Missing translation
Diffstat (limited to 'pt-br')
-rw-r--r--pt-br/csharp-pt.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown
index 458e40fa..e4bcdeb9 100644
--- a/pt-br/csharp-pt.html.markdown
+++ b/pt-br/csharp-pt.html.markdown
@@ -311,10 +311,10 @@ on a new line! ""Wow!"", the masses cried";
// Converting Data Types And Typecasting
///////////////////////////////////////
- // Converting data
+ // Convertendo dados
- // Convert String To Integer
- // this will throw a FormatException on failure
+ // Converter String para Integer
+ // isso lançará uma exceção "FormatException"
int.Parse("123");//returns an integer version of "123"
// try parse will default to type default on failure