14 implementations of MinValue
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
491static byte IMinMaxValue<byte>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1394static char IMinMaxValue<char>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1248static decimal IMinMaxValue<decimal>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
910static double IMinMaxValue<double>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
585static short IMinMaxValue<short>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
626static int IMinMaxValue<int>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
623static long IMinMaxValue<long>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
618static nint IMinMaxValue<nint>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
548static sbyte IMinMaxValue<sbyte>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
907static float IMinMaxValue<float>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
510static ushort IMinMaxValue<ushort>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
549static uint IMinMaxValue<uint>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
548static ulong IMinMaxValue<ulong>.MinValue => MinValue;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
551static nuint IMinMaxValue<nuint>.MinValue => MinValue;
27 references to MinValue
System.Linq (1)
System\Linq\Sum.cs (1)
118Vector<T> overflowTestVector = new(T.MinValue);
System.Private.CoreLib (20)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
490/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1393/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1247/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
909/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
97/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1126/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
584/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
625/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
622/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (2)
175/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" /> 617/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
547/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\SearchValues\SearchValues.cs (1)
248T max = T.MinValue;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
906/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1319/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
509/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
548/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
547/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (2)
171/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" /> 550/// <inheritdoc cref="IMinMaxValue{TSelf}.MinValue" />
System.Private.Windows.Core.TestUtilities (4)
XUnit\TestData.cs (4)
39T.MinValue, 56= ImmutableArray.Create(T.MinValue == T.Zero 59T.MinValue, 66T.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));