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
1 change: 1 addition & 0 deletions documentation/SA1000.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ The `new` and `stackalloc` keywords should always be followed by a space, except

* The `new` or `stackalloc` keyword is used to create a new implicitly-typed array. In this case there should be no
space between the keyword and the opening array bracket.
* The `new` keyword is part of implicit object creation (target-typed new). In this case there should be no space between the keyword and the opening parenthesis.
* The `new` keyword is part of a generic type constraint. In this case there should be no space between the `new`
keyword and the opening parenthesis.

Expand Down