summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authordaniloyamauti <33129352+daniloyamauti@users.noreply.github.com>2019-10-01 12:46:03 -0300
committerGitHub <noreply@github.com>2019-10-01 12:46:03 -0300
commit35472772e3fff1759e9cde9c65332fba4cc8fe68 (patch)
tree7d7da52f3dfd8aa7e491b6681d6d53b96d958b74
parentdff76c7965af30e7c7a752513a9ab93a15eb58bc (diff)
[csharp/pt-br] Missing translation
-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 2ff59296..cf134dd1 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