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
Explain the working of serialization?
How do you create user defined data types in c#?
What is serializable in c#?
What is platform independence"?
Explain About Virtual functions and their use.
Can abstract class be sealed?
Why are dynamic link library used over static one?
What are the types of comments in c#?
What is application c#?
What is polymorphism in c sharp?
What are the differences between static, public and void in c#?
What is the property of a class in c#?
List down the different ide’s provided by microsoft for c# development.
Can we create extension method for interface?
What is the real use of interface in c#?