Could someone please show me a small snippet of code which demonstrates how to call a method asynchronously in c#?
Here's a way to do it:
// The method to call void Foo() { } Action action = Foo; action.BeginInvoke(ar => action.EndInvoke(ar), null);
Of course you need to replace Action by another type of delegate if the method has a different signature
Action