explain synchronous and asynchronous in C#
Answer Posted / s sharma
Synchronous is one after another, so you send one email
when that process is done it sends the
next one. Asynchronous starts sending an email and it
doesn't care if the first one is done and will
start the second, and this goes on until all emails are
sent. Normally, an asynchronous process
would open a new thread and run in the background.
| Is This Answer Correct ? | 37 Yes | 3 No |
Post New Answer View All Answers
Explain about Oops concept
What are indexers in c# .net?
What is the relation between classes and objects?
Does c# have its own class library?
What are tuples c#?
What are virtual classes in c#?
What is the advantage of constructor in c#?
How to find the current application file path while runtime?
Why objects are stored in heap in c#?
what are the different ways a method can be overloaded?
What is boolean method?
How do I create a delegate/multicastdelegate?
Can derived classes have greater accessibility than their base types?
What is .dbml file?
Do loops in c#?