3 references to ExclusiveInt32Max
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (1)
5412if ((uint)(value - TaskCache.InclusiveInt32Min) < (TaskCache.ExclusiveInt32Max - TaskCache.InclusiveInt32Min))
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskCache.cs (2)
33Debug.Assert(ExclusiveInt32Max >= InclusiveInt32Min, "Expected max to be at least min"); 35var tasks = new Task<int>[ExclusiveInt32Max - InclusiveInt32Min];