How Is The Dll Hell Problem Solved In .net?
what is a constructor?
5 Answers Amazon, Amdocs, Choice Solutions,
Explain the different types of delegates used in c#.
Why do we use ienumerable in c#?
What is generic delegates in c#?
What is desktop application testing?
Define interface class in c#?
Can arraylist hold primitive types?
write the Syntax for Function or Method Overriding?
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 meant by desktop application?
Explain how can you clean up objects holding resources from within the code?
Does c# have a 'throws' clause?