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
What is difference between destructor and finalize?
What is difference between managed and unmanaged code?
Why do we use abstraction in c#?
Is c# or c++ better for games?
What does int parse do in c#?
What is Assembly. and Describe type of assembly. why most developer happy with private assembly.
What is the difference between the debug class and trace class? Documentation looks the same.
What is cache memory in c#?
What is the difference between protected and internal in c#?
Can constructor have return type c#?
What is interface c#?
What is serialization in c#?
What is the difference between null and string empty in c#?
What is the implicit name of the parameter that gets passed into the class set method?
What is sqlcommandbuilder c#?