Bits Bender

Results 23 comments of Bits Bender

@yoav-melamed, check the WorkItemsGroup, I didn't update the STP itself.

@yoav-melamed, Check https://stackoverflow.com/questions/271440/captured-variable-in-a-loop-in-c-sharp to solve this. You should copy i to another local variable before passing it to the Executor Something like: ``` //stp.Concurrency = 1; var wig = stp.CreateWorkItemsGroup(concurrency:...

Hi, You shouldn't rely on `Thread.Abort()` in your code. It is even not supported in latest .net core versions see https://learn.microsoft.com/en-us/dotnet/api/system.threading.thread.abort Check the `PostExecuteWorkItemCallback` delegate to know when a work...