What is ienumerable <> in c#?


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

Post New Answer

More C Sharp Interview Questions

Can hashtable have duplicate keys in c#?

0 Answers  


In languages without exception-handling facilities, we could send an error-handling procedure as a parameter to each procedure that can detect errors that must be handled. What disadvantages are there to this method?

0 Answers   HCL,


Describe ado.net?

0 Answers  


What is Event - Delegate?

0 Answers  


what is the scope of anonymous type ?

0 Answers   Wipro,






Is is possible to force garbage collector to run?

0 Answers  


How can I get around scope problems in a try/catch?

0 Answers  


What is a console device?

0 Answers  


What is the use of thread join in c#?

0 Answers  


What is the real use of interface in c#?

0 Answers  


What does .length do in c#?

0 Answers  


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  


Categories