Asynchronous Programming
If you are working with applications such as windows store and Windows
Phone applications you may be found lot of functions that with Async
keyword. Why Async?
We need async because when working with applications that interact with
network (web, local network) , database, Files and reading hardware in
the device are much more slower than the usual execution. Because of it
communication bottlenecks are occur.
To avoid those communication bottlenecks async is born.
What Async Does ?
Async allows to run those delayed...