Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IntValueEvent.cs
Go to the documentation of this file.
1
using
System.Threading
;
2
3
namespace
System.Linq.Parallel
;
4
5
internal
sealed
class
IntValueEvent
:
ManualResetEventSlim
6
{
7
internal
int
Value
;
8
9
internal
IntValueEvent
()
10
: base(initialState: false)
11
{
12
Value
= 0;
13
}
14
15
internal
void
Set
(
int
index
)
16
{
17
Value
=
index
;
18
Set
();
19
}
20
}
System.Linq.Parallel.IntValueEvent.IntValueEvent
IntValueEvent()
Definition
IntValueEvent.cs:9
System.Linq.Parallel.IntValueEvent.Value
int Value
Definition
IntValueEvent.cs:7
System.Linq.Parallel.IntValueEvent.Set
void Set(int index)
Definition
IntValueEvent.cs:15
System.Linq.Parallel.IntValueEvent
Definition
IntValueEvent.cs:6
System.Threading.ManualResetEventSlim.Set
void Set()
Definition
ManualResetEventSlim.cs:131
System.Threading.ManualResetEventSlim
Definition
ManualResetEventSlim.cs:8
System.Linq.Parallel
Definition
AnyAllSearchOperator.cs:5
System.Linq.ExceptionArgument.index
@ index
System.Threading
Definition
TaskToApm.cs:3
source
System.Linq.Parallel
System.Linq.Parallel
IntValueEvent.cs
Generated by
1.10.0