diff options
| -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 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 | 
