How many types of variables are there in c#?
No Answer is Posted For this Question
Be the First to Post Answer
Define encapsulation?
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.
How do you remove white spaces from a string?
What is a data set in c#?
Did a generic class can be inherited by a normal class?
how can i get this 123456789 1234 6789 123 789 12 89 1 9
What kind of the information stored inside the assembly?
Explain the difference between a struct and a class?
Can you declare the override method static while the original method is non-static?
What are anonymous types in c#?
What does Dispose method do with the connection object?
What is the difference between webgarden and webfarm?