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
What is yield return in c#?
How would you describe encapsulation in c#?
Difference between value and reference type. What are value types and reference types?
What is the use of static members with example using c#.net.
What are properties in C#?
What is the keyword used to prevent a class from being inherited by another class?
What is default parameter in c#?
Are tuples mutable c#?
Which config file has all the supported channels/protocol?
In a single .NET DLL how many classes it contains?
How objects are stored in memory?
What is constructors, explain with syntax
What is thread in c#?
What is gridview c#?
Why to use “using” in c#?