Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ foreach (var option in TestEnum.List)
Console.WriteLine(option.Name);
```

`List` returns an `IReadOnlyCollection` so you can use the `Count` property to efficiently get the number os available options.
`List` returns an `IReadOnlyCollection` so you can use the `Count` property to efficiently get the number of available options.

```csharp
var count = TestEnum.List.Count;
Expand Down