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 an array? Give the syntax for a single and multi-dimensional array?
Why do we need to call CG.SupressFinalize?
What is yield in c#?
Can you use foreach iteration on arrays in c#?
What are the types of attributes in c#?
What are the fundamental oop concepts?
Explain attributes in c#?
Do while loops yes or no c#?
Is python easier than c#?
What is foreach loop in c#?
I want to print "Hello" even before main() is executed. How will you achieve that?
How to do and Apply Themes to Datagrid,Lable,Textbox,etc., in C#.NET 2005 Windows Application? (like who we will do themes in ASP.NET using .CSS and .SKIN files). Urgent!!
What is the diff between the System.Array.CopyTo() and System.Array.Clone()?
What is reference c#?
What are the types of access modifiers?