Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new type definition suggestion #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,28 @@ foreach (var location in locations)

</details>

<details>
<summary><b>Avoid var type when you use method for variable definition</b></summary>

The var type should only be used when defining a new object. When defining a variable with any method call, specifying the type of the variable will make it easier for software developers who read the code. In this way, you can know which type of value is returned without taking your mouse over the method you call.

**Bad:**

```csharp
var address = _customerService.GetCustomerAddress();
```

**Good:**

```csharp
CustomerAddress address = _customerService.GetCustomerAddress();

```

**[⬆ back to top](#table-of-contents)**

</details>

<details>
<summary><b>Avoid magic string</b></summary>

Expand Down