-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix style errors: IDE0028, IDE0290, IDE0300 & IDE0301
- bld\ExtensionsGenerator\Program.cs(394,15,394,35): error IDE0290: Use primary constructor - bld\ExtensionsGenerator\Program.cs(386,81,386,86): error IDE0301: Collection initialization can be simplified - bld\ExtensionsGenerator\Program.cs(362,15,362,22): error IDE0290: Use primary constructor - MoreLinq\FullGroupJoin.cs(165,67,165,72): error IDE0301: Collection initialization can be simplified - MoreLinq\Maxima.cs(243,37,243,42): error IDE0301: Collection initialization can be simplified - MoreLinq\Maxima.cs(293,89,293,94): error IDE0301: Collection initialization can be simplified - MoreLinq\Maxima.cs(323,28,323,31): error IDE0028: Collection initialization can be simplified - MoreLinq\Maxima.cs(235,37,235,42): error IDE0301: Collection initialization can be simplified - MoreLinq\Partition.cs(356,28,356,33): error IDE0301: Collection initialization can be simplified - MoreLinq\Partition.cs(357,28,357,33): error IDE0301: Collection initialization can be simplified - MoreLinq\Partition.cs(358,28,358,33): error IDE0301: Collection initialization can be simplified - MoreLinq\TakeLast.cs(57,43,57,48): error IDE0301: Collection initialization can be simplified - MoreLinq.Test\TestExtensions.cs(41,69,41,72): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\TestExtensions.cs(36,67,36,70): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\TestExtensions.cs(36,67,36,72): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\TestExtensions.cs(41,69,41,74): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\TestExtensions.cs(47,63,47,66): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\TestExtensions.cs(47,63,47,68): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\SampleData.cs(33,71,33,74): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\SampleData.cs(33,71,33,76): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\SampleData.cs(28,75,28,78): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\SampleData.cs(28,75,28,80): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\AggregateTest.cs(100,57,100,60): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\AggregateTest.cs(100,57,100,69): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\BacksertTest.cs(35,64,35,67): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\BacksertTest.cs(35,64,35,69): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\EndsWithTest.cs(55,45,55,48): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\EndsWithTest.cs(55,45,55,55): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\EndsWithTest.cs(61,45,61,48): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\EndsWithTest.cs(61,45,61,50): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\CountDownTest.cs(157,27,157,35): error IDE0290: Use primary constructor - MoreLinq.Test\Enumerable.cs(148,28,148,33): error IDE0301: Collection initialization can be simplified - MoreLinq.Test\InsertTest.cs(28,62,28,65): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\InsertTest.cs(28,62,28,67): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\Scope.cs(26,19,26,24): error IDE0290: Use primary constructor - MoreLinq.Test\ReturnTest.cs(151,53,151,56): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\ReturnTest.cs(151,53,151,65): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\StartsWithTest.cs(55,47,55,50): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\StartsWithTest.cs(55,47,55,57): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\StartsWithTest.cs(61,47,61,50): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\StartsWithTest.cs(61,47,61,52): error IDE0300: Collection initialization can be simplified - MoreLinq.Test\TraverseTest.cs(41,111,41,116): error IDE0301: Collection initialization can be simplified - MoreLinq.Test\TraverseTest.cs(49,113,49,118): error IDE0301: Collection initialization can be simplified See also: - IDE0028: Use primary constructor https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0028 - IDE0290: Use primary constructor https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0290 - IDE0300: Collection initialization can be simplified https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0300 - IDE0301: Collection initialization can be simplified https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0301
- Loading branch information
Showing
17 changed files
with
43 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters