When developing a server side application in .NET that handles high volume of traffic there is always a place to consider the implementation of the Asynchronous Method pattern. Implementing this pattern will allow our application to handle a bigger number of clients.
I have just updated the Asynchronous Methods slides in my C# Fundamentals course, available for free personal usage at abelski. The new version includes a code sample.
The following video clip explain the basic principles of Asynchronous Methods in C#. It uses the code sample you can find in the slides.
The following video clip demonstrates the execution of this code sample showing the benefit of using the Asynchronous Method pattern in C#.