I have read all the msdn and viz studio docs on asynchronous method calls. Is there a way to just simply call a method async without callbacks? I just want to call a function that sends out a ton of mail, and don't care about any return values.
Run your function in another thread then. When the thread finishes, it just goes away. Be aware that when your main thread (the rest of the progam) finishes, your thread will be terminated too (gets a ThreadAbortException). So you'll have to tell the main thread when your worker thread completes.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.