A collection of fixed date groups.
Inheritance
object
Implements
- IList<FixedDateGroup>
- ICollection<FixedDateGroup>
- IEnumerable<FixedDateGroup>
- IEnumerable
Properties
Section titled "Properties"Count
Section titled "Count"Gets the number of fixed date groups in the collection.
public int Count { get; } this[int]
Section titled "this[int]"Gets or sets the fixed date group at the specified index.
public FixedDateGroup this[int index] { get; set; } Methods
Section titled "Methods"Add(FixedDateGroup)
Section titled "Add(FixedDateGroup)"Adds a fixed date group to the collection.
public void Add(FixedDateGroup item) Parameters
- item:
FixedDateGroup
Returns any
Clear()
Section titled "Clear()"Clears the collection.
public void Clear() Returns any
Contains(FixedDateGroup)
Section titled "Contains(FixedDateGroup)"Determines whether the specified fixed date group is in the collection.
public bool Contains(FixedDateGroup item) Parameters
- item:
FixedDateGroup
Returns any
IndexOf(FixedDateGroup)
Section titled "IndexOf(FixedDateGroup)"Gets the index of the specified fixed date group in the collection.
public int IndexOf(FixedDateGroup item) Parameters
- item:
FixedDateGroup
Returns any
Insert(int, FixedDateGroup)
Section titled "Insert(int, FixedDateGroup)"Inserts a fixed date group into the collection.
public void Insert(int index, FixedDateGroup item) Parameters
- index:
int - item:
FixedDateGroup
Returns any
Remove(FixedDateGroup)
Section titled "Remove(FixedDateGroup)"Removes the fixed date group from the collection.
public bool Remove(FixedDateGroup item) Parameters
- item:
FixedDateGroup
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the fixed date group at the specified index.
public void RemoveAt(int index) Parameters
- index:
int