fix: converted single to triple backticks6 (#36233)

This commit is contained in:
Randell Dawson
2019-06-20 14:40:26 -07:00
committed by Tom
parent 9c90b163d6
commit 19a601f135
75 changed files with 1760 additions and 1577 deletions

View File

@@ -8,32 +8,34 @@ localeTitle: إذا كان البيان الآخر
## مثال
`if(boolean expression)
{
// execute this code block if expression evalutes to true
}
else
{
// always execute this code block when above if expression is false
}
int Price = 30;
If (Price = 30)
{
Console.WriteLine("Price is equal to 30.");
}
Else
{
Console.WriteLine("Price is not equal to 30.");
}
`
```
if(boolean expression)
{
// execute this code block if expression evalutes to true
}
else
{
// always execute this code block when above if expression is false
}
int Price = 30;
If (Price = 30)
{
Console.WriteLine("Price is equal to 30.");
}
Else
{
Console.WriteLine("Price is not equal to 30.");
}
```
بما أننا أعلنا بالفعل أن السعر لدينا هو 30 ، سيكون هذا هو الناتج المتوقع.
## انتاج |
`Price is equal to 30.
`
```
Price is equal to 30.
```