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
Is it possible to inherit multiple interfaces?
Explain nullable types in c#?
What is a string c#?
Why can't we use a static class instead of singleton?
What is anonymous types in c#?
What is difference between iqueryable and ienumerable in c#?
What is serialization in dot net?
Is collection a data structure?
Is as operator in c#?
Why do we need a singleton class?
What are extension methods and where can we use them?
What is the use of main method in c#?
Explain the clr triggers?
What is the difference between system.text.stringbuilder and system.string?
What is the best dependency injection c#?