Click here to Skip to main content
16,009,391 members

Comments by mskataria (Top 1 by date)

mskataria 11-Nov-14 1:50am View    
Thanks Snesh, it worked. I put Thread.Sleep to simulate delay, we beautifully changed it to "await Task.Delay" because we had awaitable delay method.

Suppose the actual task is to talk to some service over socket or to do some DB operation, where you don't have "awaitable" method, won't I be able to do that async using async keyword?