Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -827,13 +827,27 @@ static void ThrowInvalid(NumberStyles value)

internal static void ValidateParseStyleFloatingPoint(NumberStyles style)
{
// Check for undefined flags or hex number
if ((style & (InvalidNumberStyles | NumberStyles.AllowHexSpecifier | NumberStyles.AllowBinarySpecifier)) != 0)
// Check for undefined flags
if ((style & InvalidNumberStyles) != 0)
{
ThrowInvalid(style);
throw new ArgumentException(SR.Argument_InvalidNumberStyles, nameof(style));
}

// Binary specifier is not supported for floating point
if ((style & NumberStyles.AllowBinarySpecifier) != 0)
{
throw new ArgumentException(SR.Arg_HexBinaryStylesNotSupported, nameof(style));
}

static void ThrowInvalid(NumberStyles value) =>
throw new ArgumentException((value & InvalidNumberStyles) != 0 ? SR.Argument_InvalidNumberStyles : SR.Arg_HexBinaryStylesNotSupported, nameof(style));
// When AllowHexSpecifier is used, only specific flags are allowed
if ((style & NumberStyles.AllowHexSpecifier) != 0)
{
// HexFloat allows: AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowHexSpecifier, AllowDecimalPoint, AllowExponent
NumberStyles invalidFlags = style & ~NumberStyles.HexFloat;
if (invalidFlags != 0)
{
throw new ArgumentException(SR.Arg_InvalidHexBinaryStyle, nameof(style));
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ public enum NumberStyles
Float = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign |
AllowDecimalPoint | AllowExponent,

/// <summary>Indicates that the <see cref="AllowLeadingWhite"/>, <see cref="AllowTrailingWhite"/>, <see cref="AllowLeadingSign"/>, <see cref="AllowHexSpecifier"/>, <see cref="AllowDecimalPoint"/>, and <see cref="AllowExponent"/> styles are used for hexadecimal floating-point values. This is a composite number style.</summary>
HexFloat = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign | AllowHexSpecifier | AllowDecimalPoint | AllowExponent,

Currency = AllowLeadingWhite | AllowTrailingWhite | AllowLeadingSign | AllowTrailingSign |
AllowParentheses | AllowDecimalPoint | AllowThousands | AllowCurrencySymbol,

Expand Down
133 changes: 133 additions & 0 deletions src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,132 @@
return maxDigits;
}

private static void FormatFloatAsHex<TNumber, TChar>(ref ValueListBuilder<TChar> vlb, TNumber value, char fmt, int precision, NumberFormatInfo info)
where TNumber : unmanaged, IBinaryFloatParseAndFormatInfo<TNumber>
where TChar : unmanaged, IUtfChar<TChar>
{
// Get the raw bits
ulong bits = TNumber.FloatToBits(value);
int mantissaBits = TNumber.NormalMantissaBits;
int exponentBias = TNumber.ExponentBias;

// Extract sign, exponent, and mantissa
bool isNegative = (bits >> (mantissaBits + TNumber.ExponentBits)) != 0;
int biasedExponent = (int)((bits >> mantissaBits) & ((1UL << TNumber.ExponentBits) - 1));
ulong mantissa = bits & TNumber.NormalMantissaMask;

// Add sign
if (isNegative)
{
vlb.Append(TChar.CastFrom('-'));
}

// Add "0x" prefix
vlb.Append(TChar.CastFrom('0'));
vlb.Append(TChar.CastFrom(fmt)); // 'x' or 'X'

// Handle special cases
if (biasedExponent == TNumber.InfinityExponent)
{
// Infinity or NaN - just output as 0
vlb.Append(TChar.CastFrom('0'));
vlb.Append(TChar.CastFrom('p'));
vlb.Append(TChar.CastFrom('+'));
vlb.Append(TChar.CastFrom('0'));
return;
}

if (biasedExponent == 0 && mantissa == 0)
{
// Zero
vlb.Append(TChar.CastFrom('0'));
if (precision > 0)
{
vlb.Append(TChar.CastFrom('.'));
for (int i = 0; i < precision; i++)
{
vlb.Append(TChar.CastFrom('0'));
}
}
vlb.Append(TChar.CastFrom('p'));
vlb.Append(TChar.CastFrom('+'));
vlb.Append(TChar.CastFrom('0'));
return;
}

// Normalize: add implicit leading 1 for normal numbers
int actualExponent;
if (biasedExponent == 0)
{
// Denormal number
actualExponent = 1 - exponentBias;
}
else
{
// Normal number - add implicit leading bit
mantissa |= (1UL << mantissaBits);
actualExponent = biasedExponent - exponentBias;
}

// Normalize mantissa so the leading bit is in the MSB position
int shift = 64 - mantissaBits - 1;
mantissa <<= shift;

// Output integer part (always "1" for normalized)
char hexBase = fmt == 'X' ? 'A' : 'a';
int firstNibble = (int)(mantissa >> 60);
vlb.Append(TChar.CastFrom((char)('0' + (firstNibble > 9 ? 0 : firstNibble))));
if (firstNibble > 9)
{
vlb.Append(TChar.CastFrom((char)(hexBase + firstNibble - 10)));
}

// Remove the first nibble
mantissa = (mantissa << 4) & 0xFFFFFFFFFFFFFFFF;

// Determine how many hex digits to output
int hexDigits = precision >= 0 ? precision : (mantissaBits + 3) / 4;

if (hexDigits > 0)
{
vlb.Append(TChar.CastFrom('.'));

for (int i = 0; i < hexDigits; i++)
{
int nibble = (int)(mantissa >> 60);
char hexChar = nibble < 10 ? (char)('0' + nibble) : (char)(hexBase + nibble - 10);
vlb.Append(TChar.CastFrom(hexChar));
mantissa = (mantissa << 4) & 0xFFFFFFFFFFFFFFFF;
}
}

// Output exponent
vlb.Append(TChar.CastFrom('p'));
if (actualExponent >= 0)
{
vlb.Append(TChar.CastFrom('+'));
}

// Format exponent as decimal
FormatInt32(ref vlb, actualExponent, 0, null, info);
}

private static void FormatInt32<TChar>(ref ValueListBuilder<TChar> vlb, int value, int precision, string? format, NumberFormatInfo info)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-armel checked CoreCLR_NonPortable)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-armel checked CoreCLR_NonPortable)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-armel checked CoreCLR_NonPortable)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 release CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 release CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 release CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-x64 Release AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-x64 Release AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-x64 Release AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-loongarch64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-loongarch64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-loongarch64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-loongarch64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-loongarch64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR_Bootstrapped)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.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/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

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

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,115): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'format' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,96): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'precision' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)

Check failure on line 639 in src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs#L639

src/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs(639,140): error IDE0060: (NETCORE_ENGINEERING_TELEMETRY=Build) Remove unused parameter 'info' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0060)
where TChar : unmanaged, IUtfChar<TChar>
{
if (value < 0)
{
vlb.Append(TChar.CastFrom('-'));
Copy link

Copilot AI Oct 12, 2025

Choose a reason for hiding this comment

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

Potential integer overflow when negating int.MinValue. The negation of int.MinValue overflows and remains negative, which could cause incorrect behavior.

Suggested change
vlb.Append(TChar.CastFrom('-'));
vlb.Append(TChar.CastFrom('-'));
if (value == int.MinValue)
{
// int.MinValue cannot be negated; use its magnitude as uint
string numStr = ((uint)int.MinValue).ToString();
foreach (char c in numStr)
{
vlb.Append(TChar.CastFrom(c));
}
return;
}

Copilot uses AI. Check for mistakes.

value = -value;
}

string numStr = ((uint)value).ToString();
foreach (char c in numStr)
{
vlb.Append(TChar.CastFrom(c));
}
}

public static string FormatFloat<TNumber>(TNumber value, string? format, NumberFormatInfo info)
where TNumber : unmanaged, IBinaryFloatParseAndFormatInfo<TNumber>
{
Expand Down Expand Up @@ -598,6 +724,13 @@
precision = TNumber.MaxPrecisionCustomFormat;
}

// Handle hex float formatting (X or x)
if (fmt == 'X' || fmt == 'x')
{
FormatFloatAsHex(ref vlb, value, fmt, precision, info);
return null;
}

NumberBuffer number = new NumberBuffer(NumberBufferKind.FloatingPoint, pDigits, TNumber.NumberBufferLength);
number.IsNegative = TNumber.IsNegative(value);

Expand Down
Loading
Loading