Jaimal Chohan

Posts Tagged ‘Delegates

Asynchronous Programming Part 2 – Threading

Posted by: jaimalchohan on: May 13, 2008

Threading
If you don’t know what a process is, click Crtl + Shift + Esc to bring up the task manager, click on the processes tab and you’ll see all the processes running on your PC (You might need to uncheck “Show processes from all users” to see all of the processes).
A process is a programs [...]

Asynchronous Programming Part 1 – Delegates

Posted by: jaimalchohan on: April 26, 2008

Asynchronous Programming Part 1 – Delegates
Asynchronous Programming is the ability to perform multiple operations at the same time. For example, connect to a web service whilst at the same time connecting to a database and still responding to user input (avoiding a ‘frozen’ window).

To understand and be able to use Asynchronous programming techniques there are [...]