Skip to main content
edited title
Link
default
  • 11.7k
  • 9
  • 71
  • 106

How to create an asynchronous method in c#

edited tags; edited tags
Link
Prashant Cholachagudda
  • 13.1k
  • 24
  • 100
  • 163
Source Link
Prashant Cholachagudda
  • 13.1k
  • 24
  • 100
  • 163

How to create asynchronous method in c#

I have simple method in my C# app, it picks file from FTP server and parses it and stores the data in DB. I want it to be asynchronous, so that user perform other operations on App, once parsing is done he has to get message stating "Parsing is done".

I know it can achieved through asynchronous method call but I dont know how to do that can anybody help me please??