14 implementations of MinValue
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
486static byte IMinMaxValue<byte>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1448static char IMinMaxValue<char>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1219static decimal IMinMaxValue<decimal>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
928static double IMinMaxValue<double>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
573static short IMinMaxValue<short>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
615static int IMinMaxValue<int>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
612static long IMinMaxValue<long>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
635static nint IMinMaxValue<nint>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
552static sbyte IMinMaxValue<sbyte>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
923static float IMinMaxValue<float>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
491static ushort IMinMaxValue<ushort>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
556static uint IMinMaxValue<uint>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
563static ulong IMinMaxValue<ulong>.MinValue => MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
562static nuint IMinMaxValue<nuint>.MinValue => MinValue;
32 references to MinValue
Microsoft.Diagnostics.DataContractReader (1)
ContractDescriptorTarget.cs (1)
613return T.IsNegative(T.MinValue);
System.Linq (1)
System\Linq\Sum.cs (1)
116Vector<T> overflowTestVector = new(T.MinValue);
System.Private.CoreLib (24)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
485/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1447/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1218/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
927/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
100/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1110/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
572/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
614/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
611/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (2)
179/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" /> 634/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (4)
3516bool isUnsigned = TInteger.IsZero(TInteger.MinValue); 3547return TInteger.MinValue; 3582return TInteger.MinValue; 3587return TInteger.MinValue;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
92/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
551/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
922/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1350/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
490/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
555/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
562/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (2)
175/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" /> 561/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
System.Private.Windows.Core.TestUtilities (4)
XUnit\TestData.cs (4)
41T.MinValue, 58= ImmutableArray.Create(T.MinValue == T.Zero 61T.MinValue, 68T.MinValue,
System.Threading.Tasks.Parallel (2)
System\Threading\Tasks\ParallelRangeManager.cs (2)
183fromInclusiveInt64 <= long.CreateTruncating(TInt.MaxValue) && fromInclusiveInt64 >= long.CreateTruncating(TInt.MinValue) && 184toExclusiveInt64 <= long.CreateTruncating(TInt.MaxValue) && toExclusiveInt64 >= long.CreateTruncating(TInt.MinValue));