What are synchronous and asynchronous operations?
No Answer is Posted For this Question
Be the First to Post Answer
How to find methods of a assembly file (not using ILDASM)?
Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.
What is a collection in c#?
How long will it take to learn c sharp?
Is c# an array?
What type of data type conversion happens when the compiler encounters the following code?
Give examples for value types?
Explain what a diffgram, and a good use for one Define diffgram? How it be used?
How can you read 3rd line from a text file?
What are indexers in c# .net?
What is file extension of webservices?
Explain concurrency with aop?