explain synchronous and asynchronous in C#
Answer Posted / sharad yadav
Usually the methods are synchronous. That means that you
call them, they gets executed. And when they finish you get
the control back.
The asynchronous methods are different. You call them. They
start executing, but return the control over the execution
back to the thread which called them while they continue to
execute in different thread.
| Is This Answer Correct ? | 52 Yes | 8 No |
Post New Answer View All Answers
In a single .NET DLL how many classes it contains?
What do you mean by stack and heap in c#?
What are destructors in C#?
What are the differences between events and delegates in c#?
What is the difference between struct and class c#?
Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?
Why use a singleton instead of static methods?
What is a class c#?
Can you create sealed abstract class in c#?
Is datetime a value type in c#?
what is IComparable
Explain the difference between const and static read-only?
How do you specify a custom attribute for the entire assembly (rather than for a class)?
Does c# have a 'throws' clause?
What is the syntax for calling an overloaded constructor within a constructor?