Is boxing an implicit conversion?
No Answer is Posted For this Question
Be the First to Post Answer
What are Regex / regular expressions ?
What is the data type for bit in c#?
Is c# 8 released?
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.
Which is faster list or dictionary in c#?
What's different between c# and c/c++?
What are native methods?
What is the default value of boolean variable?
Why extension method is static?
Does c# provide copy constructor?
Which function is the entry point for a DLL in MS Windows 3.1?
Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }