What is the differnce between synchronus and asynchronus method?
I found this q/a from codeverge
When you call a synchronous method, it does the work and then returns the result (success, failure, maybe nothing is returned).
When you call an asychronous method, it returns immediately (and your program can go on its merry way). When the work is done, it will call a function that you provide. The works is done in parallel with the program running.
But really couldn't understand properly.
Does anyone have clear concept on this?