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

◆ CompletedSynchronously

bool System.Net.LazyAsyncResult.CompletedSynchronously
getinherited

Implements System.IAsyncResult.

Definition at line 69 of file LazyAsyncResult.cs.

70 {
71 get
72 {
73 int num = _intCompleted;
74 if (num == 0)
75 {
76 num = Interlocked.CompareExchange(ref _intCompleted, int.MinValue, 0);
77 }
78 return num > 0;
79 }
80 }
static int CompareExchange(ref int location1, int value, int comparand)