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

ArgumentOutOfRangeException: use corresponding default message for all overloads #89846

Closed
wants to merge 3 commits into from
Closed
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,22 @@
// Creates a new ArgumentOutOfRangeException with its message
// string set to a default message explaining an argument was out of range.
public ArgumentOutOfRangeException()
: base(SR.Arg_ArgumentOutOfRangeException)
{
HResult = HResults.COR_E_ARGUMENTOUTOFRANGE;
}
: this(null, null, null) {}

public ArgumentOutOfRangeException(string? paramName)
: base(SR.Arg_ArgumentOutOfRangeException, paramName)
{
HResult = HResults.COR_E_ARGUMENTOUTOFRANGE;
}

: this(paramName, null, null) {}

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build linux-x64 release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux arm64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_Mono_LLVMJIT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug AllSubsets_Mono_LLVMJIT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux x64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Libraries_AllConfigurations)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono llvmaot Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux_musl x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux arm64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build freebsd x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux_musl arm Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux arm Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux_musl arm64 Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux x64 Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build osx-x64 release Runtime_Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAot_RuntimeTests llvmaot)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build mono Common Pri0 Test Build AnyOS AnyCPU release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_AOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono llvmaot Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build coreclr Common Pri0 Test Build AnyOS AnyCPU checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build osx-x64 release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading_Smoke)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build osx x64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build osx-arm64 release Runtime_Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT_Libraries)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked CLR_Tools_Tests)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux riscv64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux x86 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build tizen armel checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build osx x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl x64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux x64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build freebsd x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build osx arm64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build osx arm64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_LLVMJIT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Interpreter_RuntimeTests monointerpreter)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build osx x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked Native_GCC)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux_musl x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux_musl arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT_Libraries)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx x64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx arm64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 29 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L29

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(29,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)
OwnageIsMagic marked this conversation as resolved.
Show resolved Hide resolved
public ArgumentOutOfRangeException(string? paramName, string? message)
: base(message, paramName)
{
HResult = HResults.COR_E_ARGUMENTOUTOFRANGE;
}

: this(paramName, null, message) {}

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build linux-x64 release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux arm64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_Mono_LLVMJIT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug AllSubsets_Mono_LLVMJIT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux x64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Libraries_AllConfigurations)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono llvmaot Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux_musl x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux arm64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build freebsd x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux_musl arm Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux arm Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux_musl arm64 Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build linux x64 Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build osx-x64 release Runtime_Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAot_RuntimeTests llvmaot)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build mono Common Pri0 Test Build AnyOS AnyCPU release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_AOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono llvmaot Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build coreclr Common Pri0 Test Build AnyOS AnyCPU checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build osx-x64 release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading_Smoke)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build osx x64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build osx-arm64 release Runtime_Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT_Libraries)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked CLR_Tools_Tests)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux riscv64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux x86 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build tizen armel checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build osx x64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl x64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux_musl arm64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux x64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build freebsd x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build linux arm64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build osx arm64 debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Libraries Build osx arm64 Debug)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_LLVMJIT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Interpreter_RuntimeTests monointerpreter)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono Product Build osx x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked Native_GCC)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux_musl x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux_musl arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build Mono crossaot Product Build linux arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx x64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT_Libraries)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx x64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx arm64 checked)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime (Build CoreCLR Product Build osx arm64 release)

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)

Check failure on line 32 in src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs#L32

src/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs(32,1): error SA1028: (NETCORE_ENGINEERING_TELEMETRY=Build) Code should not contain trailing whitespace (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1028.md)
OwnageIsMagic marked this conversation as resolved.
Show resolved Hide resolved
public ArgumentOutOfRangeException(string? message, Exception? innerException)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is missing the same treatment.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

@stephentoub stephentoub Aug 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But it's inconsistent with itself. There's no reason a null message to the different ctors should use a different message. Either we change them all on this type or we don't change any on this type.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about other classes (string, Exception) ctor? Another PR?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If there are other types where this would make sense, we can use this PR to do so.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So there is no point constraining this to CoreLib.
This will affect all exception classes CoreLib (ls -1 **/*Exception.cs | wc -l # -> 100) and some in other libs
i.e.

public DataException(string? s) : base(s)
{
HResult = HResults.Data;
}
public DataException(string? s, Exception? innerException) : base(s, innerException) { }

public IdentityNotMappedException(string? message)
: base(message)
{
}
public IdentityNotMappedException(string? message, Exception? inner)
: base(message, inner)
{
}
internal IdentityNotMappedException(string? message, IdentityReferenceCollection? unmappedIdentities)
: this(message)

117 classes, but not every Exception out here have custom message


Are you ok with proposed pattern with constructor delegation?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you ok with proposed pattern with constructor delegation?

I'd prefer we just add ?? SR.Whatever where each message is passed along to the base.

Delegating from ctor to ctor unnecessarily keeps all larger constructors rooted and prevents them from being trimmed away when the smaller one is being used. It's also a lot more churn.

: base(message, innerException)
{
HResult = HResults.COR_E_ARGUMENTOUTOFRANGE;
}

public ArgumentOutOfRangeException(string? paramName, object? actualValue, string? message)
: base(message, paramName)
: base(message ?? SR.Arg_ArgumentOutOfRangeException, paramName)
{
_actualValue = actualValue;
HResult = HResults.COR_E_ARGUMENTOUTOFRANGE;
Expand Down
Loading