public int Threads { get; set; }Public Property Threads As Integer
Get
Setfunction get_Threads();
function set_Threads(value);This value makes no difference in the result. A value greater than one causes that many threads to get spawned to do the work on top of the main thread that orchestrates which thread does what work.
Lanes defines the maximum parallelism that can be achieved. Setting Threads to a value greater than Lanes will not result in more than Lanes threads running.