14 implementations of MinValue
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
491
static byte IMinMaxValue<byte>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1394
static char IMinMaxValue<char>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1248
static decimal IMinMaxValue<decimal>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
910
static double IMinMaxValue<double>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
585
static short IMinMaxValue<short>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
626
static int IMinMaxValue<int>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
623
static long IMinMaxValue<long>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
618
static nint IMinMaxValue<nint>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
548
static sbyte IMinMaxValue<sbyte>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
907
static float IMinMaxValue<float>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
510
static ushort IMinMaxValue<ushort>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
549
static uint IMinMaxValue<uint>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
548
static ulong IMinMaxValue<ulong>.
MinValue
=> MinValue;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
551
static nuint IMinMaxValue<nuint>.
MinValue
=> MinValue;
27 references to MinValue
System.Linq (1)
System\Linq\Sum.cs (1)
118
Vector<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)
248
T 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)
39
T.
MinValue
,
56
= ImmutableArray.Create(T.
MinValue
== T.Zero
59
T.
MinValue
,
66
T.
MinValue
,
System.Threading.Tasks.Parallel (2)
System\Threading\Tasks\ParallelRangeManager.cs (2)
183
fromInclusiveInt64 <= long.CreateTruncating(TInt.MaxValue) && fromInclusiveInt64 >= long.CreateTruncating(TInt.
MinValue
) &&
184
toExclusiveInt64 <= long.CreateTruncating(TInt.MaxValue) && toExclusiveInt64 >= long.CreateTruncating(TInt.
MinValue
));