Metah - A Web Technologist Adventure

Tweets

Synchronous and Asynchronous use of Delegate with C#

January 18th, 2010 at 1:25 pm by Ahmet Gyger

Tags: , ,
Posted in CSharp, Microsoft, Tutorials



 For developers the quality of a program can be often express in the time used to finish the computation. With current multicore processor we have to move our thinking from a serial execution to a concurrent execution. Using delegates in an asynchronous way can force the CLR to allocate multiple threads to your computation.
In below [...]