What is anonymous methods in c#?
Explain types of comment in c# with examples
Which config file has all the supported channels/protocol?
What does Dispose method do with the connection object?
How can you set image source dynamically from c# application to ”test.png” file?
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 are the different types of literals in c#?
Explain about WSDL
What is gac? What are the steps to create an assembly and add it to the gac?
What is token in c#?
What are different types of classes in c#?
Why is static constructor called first?
How does one compare strings in c#?