What is msil in c#?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

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.

1 Answers  


What is the use of convert toint32 in c#?

0 Answers  


What is uint64?

0 Answers  


Can interface have virtual methods in c#?

0 Answers  


Can you have parameters for static constructors?

0 Answers  






Is dictionary reference type c#?

0 Answers  


What is an inheritance in c#?

0 Answers  


What are the properties of a string class?

0 Answers  


What is append in c#?

0 Answers  


what is class libraries?

1 Answers  


What is the difference between protected and private?

0 Answers  


What is the difference between throw and throw ex?

0 Answers  


Categories