What is difference between list and ilist in c#?


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

Post New Answer

More C Sharp Interview Questions

What is trim in c#?

0 Answers  


Is post back in c#?

0 Answers  


How to declare a property in a class?

0 Answers  


How can I access the registry from c# code?

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  






What?s the implicit name of the parameter that gets passed into the class? set method?

1 Answers  


Can we extend static class in c#?

0 Answers  


Explain how can you clean up objects holding resources from within the code?

0 Answers  


What is parameters in c#?

0 Answers  


Differentiate between the public and private ?

0 Answers   Microsoft,


Can abstract class have private constructor c#?

0 Answers  


what are the best design patterns for C#.Net?

1 Answers  


Categories