Month

Your search for 06/2013 returned 1 result.


Windows Store Apps: Threads to Tasks

If you're updating an old .NET code base to a Windows Store app, you may notice that the Thread class is no longer available.  Instead, we have the more sophisticated Task.  If you have a lot of Thread usage in your old code, you may find a re-write of the threading code to be a large task (sorry). Here's some code that you can use in place of the missing Thread ...

Read More