Where are all .NET Collection classes located ?

Answers were Sorted based on User's Feedback



Where are all .NET Collection classes located ?..

Answer / nitin kumar tomar

In System.Collections

Is This Answer Correct ?    38 Yes 3 No

Where are all .NET Collection classes located ?..

Answer / mahavir

hi,
in the .net all collection classes are located in
System.Collection namespace

Is This Answer Correct ?    25 Yes 2 No

Where are all .NET Collection classes located ?..

Answer / praveen

System.Collections

Is This Answer Correct ?    20 Yes 1 No

Where are all .NET Collection classes located ?..

Answer / sowmya

system.collections.

Is This Answer Correct ?    12 Yes 2 No

Where are all .NET Collection classes located ?..

Answer / chvramana

System.Collections

Is This Answer Correct ?    5 Yes 1 No

Where are all .NET Collection classes located ?..

Answer / rajesh arthimalla

All are Correct
System.Collections

Is This Answer Correct ?    3 Yes 0 No

Where are all .NET Collection classes located ?..

Answer / kavitha

using System.Collections;
System.Collection is a namespace.

Is This Answer Correct ?    4 Yes 2 No

Where are all .NET Collection classes located ?..

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

Post New Answer

More C Sharp Interview Questions

How do you use nullable?

0 Answers  


What are the different types of constructors in c#?

0 Answers  


How can an inner class access the members of outer class?

0 Answers   Changepond,


what is IComparable

0 Answers   Wipro,


How to Install uninstall assemblies into GAC?

0 Answers   CitiusTech,






What are indexers in c# .net?

0 Answers  


What is nullable types in c#?

0 Answers  


How u call destructor and dispose methode in c#.NET

1 Answers  


What is difference between for and foreach in c#?

0 Answers  


What is wpf 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  


Differentiate between object pooling and connection pooling in c#?

0 Answers  


Categories