1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 10:14:58 +02:00

[csharp/pt-br] Missing translation

This commit is contained in:
daniloyamauti
2019-10-01 12:46:03 -03:00
committed by GitHub
parent dff76c7965
commit 35472772e3

View File

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