Technical Articles & Latest job openings

Technical Articles & Latest job openings

Link to Technical Contents

Threading Some Key Points

Posted: 09 Dec 2009 05:50 PM PST


1. You should minimize the number of threads that you create in your application. Too many threads will cause excessive context switching, which results in performance degradation. 2.  You should...

[[ This is a content summary only. Visit my website for full links, other content, and more! ]]

The System.Threading Namespace

Posted: 09 Dec 2009 05:52 PM PST


The System.Threading namespace contains classes that enable you to implement multithreaded operations in your applications. The key class in this namespace is the System.Threading.Thread class,...

[[ This is a content summary only. Visit my website for full links, other content, and more! ]]

Creating Thread-Safe Applications

Posted: 09 Dec 2009 06:00 PM PST


When you use multithreading, you must program your solution carefully to ensure that you create a thread-safe application. You will then be able to coordinate the work of several threads, or manage...

[[ This is a content summary only. Visit my website for full links, other content, and more! ]]

Performing Asynchronous Tasks Using Multithreading

Posted: 09 Dec 2009 06:02 PM PST


Windows Forms applications often load graphics at runtime by using one of two methods: the Load method, or the LoadAsynch method. When you click a button that performs a Load, the graphic is loaded...

[[ This is a content summary only. Visit my website for full links, other content, and more! ]]

No comments: