IntCollection Class

Collection of int Items.

Definition

Namespace: Html
Assembly: Html (in Html.dll) Version: 25.2822.3845
C#
public class IntCollection : List<int>
Inheritance
Object    ListInt32    IntCollection

Constructors

IntCollectionInitializes a new instance of the IntCollection class

Properties

Capacity
(Inherited from ListInt32)
Count
(Inherited from ListInt32)
Item
(Inherited from ListInt32)
ItemArray Get the array of Items in the Collection.

Methods

Abs Return the absolute value of items in the collection.
Add
(Inherited from ListInt32)
AddRange(IEnumerableT)
(Inherited from ListInt32)
AddRange(DataRow, String) Add a Range of Cell Values from Table Rows to the Collection.
AddRange(DataRowCollection, String) Add a Range of Cell Values from Table Rows to the Collection.
AddRange(DataTable, String) Add a Range of Cell Values from Table Rows to the Collection.
AddRangeUnique Add a range of unique values to the current collection.
AddUnique(Int32) Add an int Value to the Collection, but only if it is unique.
AddUnique(Int32) Add an array of int Values to the Collection, but only where each is unique.
AsReadOnly
(Inherited from ListInt32)
Average Return the average value of items in the collection.
BinarySearch(T)
(Inherited from ListInt32)
BinarySearch(T, IComparerT)
(Inherited from ListInt32)
BinarySearch(Int32, Int32, T, IComparerT)
(Inherited from ListInt32)
Clear
(Inherited from ListInt32)
Contains(T)
(Inherited from ListInt32)
Contains(IntCollection, Int32) Return a value indicating whether the specified Integer is contained by the provided Int Collection.
ConvertAllTOutput
(Inherited from ListInt32)
CopyTo(T)
(Inherited from ListInt32)
CopyTo(T, Int32)
(Inherited from ListInt32)
CopyTo(Int32, T, Int32, Int32)
(Inherited from ListInt32)
Equals
(Inherited from Object)
Exists
(Inherited from ListInt32)
Finalize
(Inherited from Object)
Find
(Inherited from ListInt32)
FindAll
(Inherited from ListInt32)
FindIndex(PredicateT)
(Inherited from ListInt32)
FindIndex(Int32, PredicateT)
(Inherited from ListInt32)
FindIndex(Int32, Int32, PredicateT)
(Inherited from ListInt32)
FindLast
(Inherited from ListInt32)
FindLastIndex(PredicateT)
(Inherited from ListInt32)
FindLastIndex(Int32, PredicateT)
(Inherited from ListInt32)
FindLastIndex(Int32, Int32, PredicateT)
(Inherited from ListInt32)
ForEach
(Inherited from ListInt32)
GetEnumerator
(Inherited from ListInt32)
GetHashCode
(Inherited from Object)
GetHighValue Return the High Value of Items in the specified Collection.
GetLowValue Return the Low Value of Items in the specified Collection.
GetNextHigherValue Return the next higher value in the collection from that one specified by the caller.
GetRange
(Inherited from ListInt32)
GetType
(Inherited from Object)
IndexOf(T)
(Inherited from ListInt32)
IndexOf(T, Int32)
(Inherited from ListInt32)
IndexOf(T, Int32, Int32)
(Inherited from ListInt32)
Insert(Int32) Insert an Item into a sorted position within the Collection, moving all other values downward.
Insert(Int32, Int32) Insert an Item into the specified Index of the Collection, moving all other values downward.
InsertRange
(Inherited from ListInt32)
ItemExists Return a value indicating whether or not the specified value exists within the Collection.
LastIndexOf(T)
(Inherited from ListInt32)
LastIndexOf(T, Int32)
(Inherited from ListInt32)
LastIndexOf(T, Int32, Int32)
(Inherited from ListInt32)
MemberCompare Compare the members of two Collections, and return a new Collection with the differences of each relative member.
MemberwiseClone
(Inherited from Object)
Remove Remove an Item from the Collection by its value.
RemoveAll
(Inherited from ListInt32)
RemoveAt
(Inherited from ListInt32)
RemoveRange
(Inherited from ListInt32)
Reverse
(Inherited from ListInt32)
Reverse(Int32, Int32)
(Inherited from ListInt32)
Sort
(Inherited from ListInt32)
Sort(ComparisonT)
(Inherited from ListInt32)
Sort(IComparerT)
(Inherited from ListInt32)
Sort(Int32) Sort the contents of the Array.
Sort(IntCollection) Sort the contents of the Collection.
Sort(Int32, Int32, IComparerT)
(Inherited from ListInt32)
Sum Return the sum of the caller's Int Collection.
ToArray
(Inherited from ListInt32)
ToString Return the String representation of the contents of this Collection.
(Overrides ObjectToString)
TrimExcess
(Inherited from ListInt32)
TrueForAll
(Inherited from ListInt32)

Operators

(Int32 to IntCollection) Cast the int Array to an int Collection.
(IntCollection to Int32) Cast the int Collection to an int Array.

Explicit Interface Implementations

IListAdd
(Inherited from ListInt32)
IListContains
(Inherited from ListInt32)
ICollectionCopyTo
(Inherited from ListInt32)
IEnumerableTGetEnumerator
(Inherited from ListInt32)
IEnumerableGetEnumerator
(Inherited from ListInt32)
IListIndexOf
(Inherited from ListInt32)
IListInsert
(Inherited from ListInt32)
IListIsFixedSize
(Inherited from ListInt32)
ICollectionTIsReadOnly
(Inherited from ListInt32)
IListIsReadOnly
(Inherited from ListInt32)
ICollectionIsSynchronized
(Inherited from ListInt32)
IListItem
(Inherited from ListInt32)
IListRemove
(Inherited from ListInt32)
ICollectionSyncRoot
(Inherited from ListInt32)

See Also