Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsHeld

bool System.Threading.SpinLock.IsHeld
get

Definition at line 51 of file SpinLock.cs.

52 {
53 get
54 {
56 {
57 return _owner != 0;
58 }
59 return (_owner & 1) != 0;
60 }
61 }