Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
NullableLowestBreakIteration
long? System.Threading.Tasks.ParallelLoopStateFlags32.NullableLowestBreakIteration
get
package
Definition at line
9
of file
ParallelLoopStateFlags32.cs
.
10
{
11
get
12
{
13
if
(
_lowestBreakIteration
==
int
.MaxValue)
14
{
15
return
null
;
16
}
17
long
location =
_lowestBreakIteration
;
18
if
(
IntPtr
.Size >= 8)
19
{
20
return
location;
21
}
22
return
Interlocked.Read(ref location);
23
}
24
}
System.Threading.Tasks.ParallelLoopStateFlags32._lowestBreakIteration
volatile int _lowestBreakIteration
Definition
ParallelLoopStateFlags32.cs:5
System.Reflection.Metadata.PrimitiveTypeCode.IntPtr
@ IntPtr
System
Threading
Tasks
ParallelLoopStateFlags32
Generated by
1.10.0