A collection of fixed date groups.

Inheritance

Implements
  • IList<FixedDateGroup>
  • ICollection<FixedDateGroup>
  • IEnumerable<FixedDateGroup>
  • IEnumerable

Gets the number of fixed date groups in the collection.

public int Count { get; }

Gets or sets the fixed date group at the specified index.

public FixedDateGroup this[int index] { get; set; }

Adds a fixed date group to the collection.

public void Add(FixedDateGroup item)

Parameters

  • item: FixedDateGroup

Returns any

Clears the collection.

public void Clear()

Returns any

Determines whether the specified fixed date group is in the collection.

public bool Contains(FixedDateGroup item)

Parameters

  • item: FixedDateGroup

Returns any

Gets the index of the specified fixed date group in the collection.

public int IndexOf(FixedDateGroup item)

Parameters

  • item: FixedDateGroup

Returns any

Inserts a fixed date group into the collection.

public void Insert(int index, FixedDateGroup item)

Parameters

  • index: int
  • item: FixedDateGroup

Returns any

Removes the fixed date group from the collection.

public bool Remove(FixedDateGroup item)

Parameters

  • item: FixedDateGroup

Returns any

Removes the fixed date group at the specified index.

public void RemoveAt(int index)

Parameters

  • index: int

Returns any