mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-05 14:28:31 +00:00
Update csharp-pt.html.markdown
Translation of comments (line 98 and 99) and correction of comments (line 62)
This commit is contained in:
parent
4d9778c098
commit
1b1acc6f3e
@ -59,7 +59,7 @@ namespace Learning.CSharp
|
|||||||
Console.Write("World");
|
Console.Write("World");
|
||||||
|
|
||||||
///////////////////////////////////////////////////
|
///////////////////////////////////////////////////
|
||||||
// Tpos e Variáveis
|
// Tipos e Variáveis
|
||||||
//
|
//
|
||||||
// Declare uma variável usando <tipo> <nome>
|
// Declare uma variável usando <tipo> <nome>
|
||||||
///////////////////////////////////////////////////
|
///////////////////////////////////////////////////
|
||||||
@ -95,8 +95,9 @@ namespace Learning.CSharp
|
|||||||
float fooFloat = 234.5f; // Precision: 7 digits
|
float fooFloat = 234.5f; // Precision: 7 digits
|
||||||
// f is used to denote that this variable value is of type float
|
// f is used to denote that this variable value is of type float
|
||||||
|
|
||||||
// Decimal - a 128-bits data type, with more precision than other floating-point types,
|
// Decimal - um tipo de dados de 128 bits, com mais precisão do que outros tipos de ponto flutuante,
|
||||||
// suited for financial and monetary calculations
|
// adequado para cálculos financeiros e monetários
|
||||||
|
|
||||||
decimal fooDecimal = 150.3m;
|
decimal fooDecimal = 150.3m;
|
||||||
|
|
||||||
// Boolean - true & false
|
// Boolean - true & false
|
||||||
|
Loading…
Reference in New Issue
Block a user