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

◆ Start() [2/4]

void System.Threading.Thread.Start ( bool captureContext)
inlineprivate

Definition at line 612 of file Thread.cs.

613 {
614 StartHelper startHelper = _startHelper;
615 if (startHelper != null)
616 {
617 startHelper._startArg = null;
618 startHelper._executionContext = (captureContext ? System.Threading.ExecutionContext.Capture() : null);
619 }
620 StartCore();
621 }
static ? ExecutionContext Capture()
unsafe void StartCore()
Definition Thread.cs:371
StartHelper _startHelper
Definition Thread.cs:164

References System.Threading.Thread._startHelper, System.Threading.ExecutionContext.Capture(), and System.Threading.Thread.StartCore().