
public
Thread(ParameterizedThreadStart start, int maxStackSize);
Initializes a new instance of the System.Threading.Thread class, specifying a delegate that allows an object to be passed to the thread when the thread is started and specifying the maximum stack size for the thread.
Полное описание ...
Parameters:
start:
A System.Threading.ParameterizedThreadStart delegate that represents the
methods to be invoked when this thread begins executing.
maxStackSize:
The maximum stack size, in bytes, to be used by the thread, or 0 to use the
default maximum stack size specified in the header for the executable.Important For
partially trusted code, maxStackSize is ignored if it is greater than the
default stack size. No exception is thrown.
Exceptions:
System.ArgumentNullException:
start is null.
System.ArgumentOutOfRangeException:
maxStackSize is less than zero.