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
Why are c# strings immutable?
How big is an int16?
What are the features of c#?
What are the 2 broad classifications of fields in c#?
Is string nullable c#?
What is the concept of strong names?
What is exe in c#?
What you mean by inner exception in c#?
What are the different states of a thread?
Explain about finalize method?
Is arraylist type safe in c#?
What is ado c#?
What is ienumerable t in c#?
What is difference between int and int in c#?
What are the types of serialization?