tag

home / developersection / tag

Stack Class in C#
c# 01-Jan-2016
Stack Class in C#

The Stack class represents a Last-in- First –Out (LIFO) stack of objects.

SortedList in C#
c# 01-Jan-2016
SortedList in C#

The SortedList offer more flexibility by allowing access to the variables either through the associated keys or through the indexes.

Hashtable Class in C#
c# 01-Jan-2016
Hashtable Class in C#

Hashtable optimizes lookups with the help of keys.

ArrayList Class in C#
c# 30-Dec-2015
ArrayList Class in C#

The ArrayList class can store heterogeneous collections of objects unlike array which store homogeneous collection of data.

Collection in C#
c# 23-Dec-2015
Collection in C#

Collection is an enhancement of array. If you want to create and manage a groups of related objects, use collection.

Introduction to Collection Framework in Java
java 24-Apr-2015
Introduction to Collection Framework in Java

A collection — sometimes called a container — is simply an object that groups multiple elements into a single unit. Collections are used to store, retrieve, manipulate, and communicate aggregate data.