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

◆ Thread() [3/5]

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

Definition at line 529 of file Thread.cs.

530 {
531 if (start == null)
532 {
533 throw new ArgumentNullException("start");
534 }
535 if (maxStackSize < 0)
536 {
537 throw new ArgumentOutOfRangeException("maxStackSize", SR.ArgumentOutOfRange_NeedNonNegNum);
538 }
539 _startHelper = new StartHelper(start)
540 {
541 _maxStackSize = maxStackSize
542 };
543 Initialize();
544 }
StartHelper _startHelper
Definition Thread.cs:164

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