Where are all .NET Collection classes located ?
Answers were Sorted based on User's Feedback
Answer / mahavir
hi,
in the .net all collection classes are located in
System.Collection namespace
Is This Answer Correct ? | 25 Yes | 2 No |
Answer / kavitha
using System.Collections;
System.Collection is a namespace.
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / minhajul islam
Classes are
ArrayList
BitArray
CaseInsensitiveComparer
CaseInsensitiveHashCodeProvider
CollectionBase
Comparer
DictionaryBase
Hashtable
Queue
ReadOnlyCollectionBase
SortedList
Stack
StructuralComparisons
Is This Answer Correct ? | 2 Yes | 1 No |
How do you use nullable?
What are the different types of constructors in c#?
How can an inner class access the members of outer class?
what is IComparable
How to Install uninstall assemblies into GAC?
What are indexers in c# .net?
What is nullable types in c#?
How u call destructor and dispose methode in c#.NET
What is difference between for and foreach in c#?
What is wpf c#?
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.
Differentiate between object pooling and connection pooling in c#?