Skip to main content

Class Collection<T>

Namespace: Aurigma.DesignAtoms.Canvas.Collection
Assembly: Aurigma.DesignAtoms.Model.dll
Syntax
public class Collection<T> : Collection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable where T : class

Inheritance: System.Object -> System.Collections.ObjectModel.Collection<<T>> -> Collection<T>

Implements

  • System.Collections.Generic.IList<<T>>
  • System.Collections.Generic.ICollection<<T>>
  • System.Collections.IList
  • System.Collections.ICollection
  • System.Collections.Generic.IReadOnlyList<<T>>
  • System.Collections.Generic.IReadOnlyCollection<<T>>
  • System.Collections.Generic.IEnumerable<<T>>
  • System.Collections.IEnumerable

Inherited Members

  • System.Collections.ObjectModel.Collection<<T>>.Add(<T>)
  • System.Collections.ObjectModel.Collection<<T>>.Clear
  • System.Collections.ObjectModel.Collection<<T>>.CopyTo(<T>[],System.Int32)
  • System.Collections.ObjectModel.Collection<<T>>.Contains(<T>)
  • System.Collections.ObjectModel.Collection<<T>>.GetEnumerator
  • System.Collections.ObjectModel.Collection<<T>>.IndexOf(<T>)
  • System.Collections.ObjectModel.Collection<<T>>.Insert(System.Int32,<T>)
  • System.Collections.ObjectModel.Collection<<T>>.Remove(<T>)
  • System.Collections.ObjectModel.Collection<<T>>.RemoveAt(System.Int32)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IEnumerable#GetEnumerator
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#ICollection#CopyTo(System.Array,System.Int32)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#get_Item(System.Int32)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#set_Item(System.Int32,System.Object)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#Add(System.Object)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#Contains(System.Object)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#IndexOf(System.Object)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#Insert(System.Int32,System.Object)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#Remove(System.Object)
  • System.Collections.ObjectModel.Collection<<T>>.Count
  • System.Collections.ObjectModel.Collection<<T>>.Items
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#Generic#ICollection<T>#IsReadOnly
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#ICollection#IsSynchronized
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#ICollection#SyncRoot
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#Item(System.Int32)
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#IsReadOnly
  • System.Collections.ObjectModel.Collection<<T>>.System#Collections#IList#IsFixedSize
  • System.Object.ToString
  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object,System.Object)
  • System.Object.ReferenceEquals(System.Object,System.Object)
  • System.Object.GetHashCode
  • System.Object.GetType
  • System.Object.MemberwiseClone

Constructors

Collection

public Collection()

Collection

public Collection(IEnumerable<T> collection)

Properties

Item[Int32]

public virtual T this[int index] { get; }

Methods

AddRange

public void AddRange(IEnumerable<T> collection)
Parameters
TypeNameDescription
System.Collections.Generic.IEnumerable<<T>>collection
Type Parameters
NameDescription
T

ClearItems

protected override void ClearItems()
Overrides
  • System.Collections.ObjectModel.Collection<<T>>.ClearItems
Type Parameters
NameDescription
T

OnCollectionCleared

protected virtual void OnCollectionCleared(T[] items)
Parameters
TypeNameDescription
<T>[]items
Type Parameters
NameDescription
T

InsertItem

protected override void InsertItem(int index, T item)
Parameters
TypeNameDescription
System.Int32index
<T>item
Overrides
  • System.Collections.ObjectModel.Collection<<T>>.InsertItem(System.Int32,<T>)
Type Parameters
NameDescription
T

OnItemAdded

protected virtual void OnItemAdded(int index, T item)
Parameters
TypeNameDescription
System.Int32index
<T>item
Type Parameters
NameDescription
T

RemoveItem

protected override void RemoveItem(int index)
Parameters
TypeNameDescription
System.Int32index
Overrides
  • System.Collections.ObjectModel.Collection<<T>>.RemoveItem(System.Int32)
Type Parameters
NameDescription
T

OnItemRemoved

protected virtual void OnItemRemoved(int index, T item)
Parameters
TypeNameDescription
System.Int32index
<T>item
Type Parameters
NameDescription
T

SetItem

protected override void SetItem(int index, T item)
Parameters
TypeNameDescription
System.Int32index
<T>item
Overrides
  • System.Collections.ObjectModel.Collection<<T>>.SetItem(System.Int32,<T>)
Type Parameters
NameDescription
T

Move

public virtual T Move(int oldIndex, int newIndex)
Parameters
TypeNameDescription
System.Int32oldIndex
System.Int32newIndex
Returns

<T>

Type Parameters
NameDescription
T

OnItemMoved

protected virtual void OnItemMoved(int oldIndex, int newIndex, T item)
Parameters
TypeNameDescription
System.Int32oldIndex
System.Int32newIndex
<T>item
Type Parameters
NameDescription
T

Events

ItemAdded

public event EventHandler<ItemAddedEventArgs<T>> ItemAdded

ItemRemoved

public event EventHandler<ItemRemovedEventArgs<T>> ItemRemoved

ItemMoved

public event EventHandler<ItemMovedEventArgs<T>> ItemMoved

CollectionCleared

public event EventHandler<CollectionClearedEventArgs<T>> CollectionCleared
Was this page helpful?