Click or drag to resize

CollectionT Class

Inheritance Hierarchy
SystemObject
  Mono.Collections.GenericCollectionT
    Mono.Collections.GenericReadOnlyCollectionT

Namespace:  Mono.Collections.Generic
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public class Collection<T> : IList<T>, 
	ICollection<T>, IEnumerable<T>, IEnumerable, IList, ICollection

Type Parameters

T

The CollectionT type exposes the following members.

Constructors
  NameDescription
Public methodCollectionT
Initializes a new instance of the CollectionT class
Public methodCollectionT(ICollectionT)
Initializes a new instance of the CollectionT class
Public methodCollectionT(Int32)
Initializes a new instance of the CollectionT class
Top
Properties
  NameDescription
Public propertyCount
Public propertyItem
Top
Methods
  NameDescription
Public methodAdd
Public methodClear
Public methodContains
Public methodCopyTo
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf
Public methodInsert
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnAdd
Protected methodOnClear
Protected methodOnInsert
Protected methodOnRemove
Protected methodOnSet
Public methodRemove
Public methodRemoveAt
Public methodToArray
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodIsEmpty
Check if the specified collection is empty or null.
(Defined by CollectionUtil.)
Public Extension MethodNNCount
Get the count of the specified collection, or 0 if it's null.
(Defined by CollectionUtil.)
Public Extension MethodNotEmpty
Check if the specified collection is empty or null.
(Defined by CollectionUtil.)
Public Extension MethodToString
Format the specified collection into a single string using the specified separating string to separate each item. Null items are converted to empty strings.
(Defined by StringUtil.)
Top
See Also