By tag: MultiThreading
0
kicks
Writing a Semi-Local Object Pool
Learn how to write more scalable object pools while minimizing your application's memory footprint.
0
kicks
What’s new in Beta 1 for the Task Parallel Library? (Part 1/3)
Some of the changes that are coming for the Task Parallel Library in Beta 1 of .NET 4.0 (no dates to announce) .
0
kicks
Going parallel…
The so-called „many core shift“ is happening. It’s not a thing of the future, it’s not „just around the corner“, it has already begun. And it will change our developers’ life.
0
kicks
Being parallel?
Doesn’t today’s multithreaded software profit from more cores automatically?
While server software will probably show better throughput, multithreaded client software may profit from more cores, but to a far lower degree than one might think at first.
0
kicks
Threading On Multi-Core CPUs
A comparison between performance improvement using concurrent threads on multiple CPUs
0
kicks
Unexpected Results using InvokeRequired and Multi-threading Secrets!
Before you rush and view my blockquote and jump to the conclusion “oh, it’s just that standard threading issue”, well let me assure you this is different to the norm, and please.. Yesterday, was a very annoying day dealing with multi-threading in my app, you would think I would be good at this by n...
0
kicks
9 Examples of creating a fast and responsive UI with multi-threading
9 C# examples of creating a fast and responsive UI with multi-threading, very clear and streamlined examples to get up and running quickly.
0
kicks
File Manager using C# and multithreading. Free source cod
It helps to maintains files in directories with dynamically generated names using company's naming convention, versions and release
0
kicks
.Net: Using ThreadStatic Attribute in Multithreaded Applications
Writing multithreaded programs in .Net requires a good understanding of the threading functionalities available in the .Net Framework. ThreadStatic attribute is a useful keyword in multithreaded programs. As far as functionality is concerned, ThreadStatic attribute is a variation of the static keywo...
0
kicks
Increasing the Size of your Stack (.NET Memory Management: Part 3)
Following from my previous post on the topic of stack allocation, in this post I talk about three different ways to change a thread's stack size in C#. Each of these techniques have advantages and disadvantages which I discuss as well.
This post may also be of interesting to those learning about...
0
kicks
Multithreading with ASP.Net 2.0
Every good developer should understand the basics of how Threads and Processes work on the platform they are writing applications for. For us it’s the Windows operating system and using the .Net Framework it’s even easier to harness the power of Multithreading.
0
kicks
Multithreading with an Example of .NET Application
A pretty good example of how to write a multi-threading app.