Do not use abbreviations in 5. because of 6.

The rule right after it says not to do it, yet it does it. Hypocritical, lol...
This commit is contained in:
rodolphito
2019-04-02 00:31:39 -07:00
committed by GitHub
parent 7017809c0a
commit 1387d1e798
@@ -74,9 +74,9 @@ public const string SHIPPINGTYPE = "DropShip";
#### 5. Use meaningful names for variables. The following example uses seattleCustomers for customers who are located in Seattle:
```csharp
var seattleCustomers = from cust in customers
where cust.City == "Seattle"
select cust.Name;
var seattleCustomers = from customer in customers
where customer.City == "Seattle"
select customer.Name;
```
***Why: consistent with the Microsoft's .NET Framework and easy to read.***