What r collections c sharp?

Answers were Sorted based on User's Feedback



What r collections c sharp?..

Answer / gladiator

Dot Net Provides Collection Classes which are used for Data
Storage and Data Retrieval.

This collection classes implements the ICollection
Interface which extends IEnumerator interface.

IDictionary and IList Interface extends ICollection
Interfrace.

IList is for values, while IDictioanry is for collection of
(Key,Values) pair.

Collection that implement IList are: System.Array and
System.Collections.ArrayList.

Collections that implement IDictionary are Hashtable,
ListDictionary, SortedList, HybridDictionary.

Collections derived from ICollection are: Stak, BitArray,
Queue, NameValueCollection.

Is This Answer Correct ?    10 Yes 1 No

What r collections c sharp?..

Answer / senthil kumar

c-sharp have the collections.Thats very useful utility
package.
using System.Collections is the base class

stack
queue
hashtable
arraylist etc.., is the available class.

Is This Answer Correct ?    14 Yes 6 No

What r collections c sharp?..

Answer / nagarjunareddy.s

collection classes in c#.net is data structors this data
structors are hold the data in diffrent way for flexible
operations
this collection classes are derived from i collection and i
list ,ienumerable,idictionary interfaces..
in .net version 1.0 having different type of collection classes
this are all defined with in system.collection namespaces
main imp classes
array list,hash table,stack,queue
in the above collection classes support diff way to data
storing and retrieving
in .net 2.0 having different type of collection classes this
classes are define under system.collection.generic namespce
imp classes
list --this is corresponding to array list
dictionay--this is corresponding to hashtable
stack nad heap --this are corresponding to same stack and
heap collection classes in the system.collection namespace

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What are the two uses of a ‘using’ statement in c#?

0 Answers  


Can we write class inside a class in c#?

0 Answers  


Can the accessibility of a type member be greater than the accessibility of its containing type?

0 Answers  


What is dbml file in c#?

0 Answers  


What are the advantages of interface in c#?

0 Answers  






Define acid rule of thumb for transactions in c#.

0 Answers  


Is boxing an implicit conversion?

0 Answers  


What is the use of tryparse in c#?

0 Answers  


In which way you can convert a value-type to a reference-type?

0 Answers   Siebel,


How do I type a whitespace character?

0 Answers  


How can we set class to be inherited, but prevent the method from being over-ridden?

0 Answers  


Explain the difference between const and static read-only?

0 Answers  


Categories