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

◆ Thread() [5/5]

System.Threading.Thread.Thread ( ParameterizedThreadStart start,
int maxStackSize )
inline

Definition at line 556 of file Thread.cs.

557 {
558 if (start == null)
559 {
560 throw new ArgumentNullException("start");
561 }
562 if (maxStackSize < 0)
563 {
564 throw new ArgumentOutOfRangeException("maxStackSize", SR.ArgumentOutOfRange_NeedNonNegNum);
565 }
566 _startHelper = new StartHelper(start)
567 {
568 _maxStackSize = maxStackSize
569 };
570 Initialize();
571 }
StartHelper _startHelper
Definition Thread.cs:164

References System.Threading.Thread._startHelper, System.SR.ArgumentOutOfRange_NeedNonNegNum, System.Threading.Thread.Initialize(), and System.start.