What are the problem with .NET generics?


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 meaning of Object lifetime in OOPS

0 Answers   HCL,


What is the meaning of int parse in c#?

0 Answers  


What is hiding in CSharp ?

1 Answers  


What is cosole application?

0 Answers  






To compute the monthly, half-yearly and annual sales made by all the salesmen of a company.

1 Answers   Philips,


What is “using” statement in c#?

0 Answers  


difference between keyword internal and protected?

5 Answers   HCL,


What is the data provider name to connect to access database?

0 Answers  


Distinguish between array and arraylist in c#?

0 Answers  


Can interface inherit class in c#?

0 Answers  


Does c# have a 'throws' clause?

0 Answers  


Categories