I had an idea that would allow me to perform an operation on an item in an IEnumerable list on a different thread. This is good if you need to perform an extensive operation on an item in your list. It was also a nice exercise to get away from every day life.
First thing I did was create a static class to hold my extension and the extension method itself. This method will take two parameters, an action to perform per item and a callback after each operation per item has been completed.
public sta...
No comments yet, be the first one to post comment.