Table of Contents

Class List<T>

Namespace
AndrasCsanyi.DataStructuresAndAlgs
Assembly
AndrasCsanyi.DataStructuresAndAlgs.dll
public class List<T> : IList<T>

Type Parameters

T

Inheritance

Implements

Inherited Members

Methods

Add(T)

Adds a type T elem to the list. The place of the item is after the last item in the list.

public T Add(T item)

Parameters

item T

The item to be added.

Returns

T

Returns the list having the added element.