DateTimeCollection Class

A type-safe collection of DateTime objects. The other classes in this namespace use this collection when returning a list of dates. The collection can be used as a data source for data binding.

Definition

Namespace: EWSoftware.PDI
Assembly: EWSoftware.PDI (in EWSoftware.PDI.dll) Version: 2023.1.2.0
[SerializableAttribute]
public class DateTimeCollection : Collection<DateTime>
Inheritance
Object    CollectionDateTime    DateTimeCollection

Constructors

DateTimeCollection Default constructor
DateTimeCollection(IEnumerableDateTime) Construct the collection from an enumerable list of DateTime objects

Properties

CountGets the number of elements actually contained in the CollectionT.
(Inherited from CollectionDateTime)
ItemGets or sets the element at the specified index.
(Inherited from CollectionDateTime)
ItemsGets a IListT wrapper around the CollectionT.
(Inherited from CollectionDateTime)

Methods

AddAdds an object to the end of the CollectionT.
(Inherited from CollectionDateTime)
AddRange Add a range of DateTime objects from an enumerable list
ClearRemoves all elements from the CollectionT.
(Inherited from CollectionDateTime)
ClearItemsRemoves all elements from the CollectionT.
(Inherited from CollectionDateTime)
ContainsDetermines whether an element is in the CollectionT.
(Inherited from CollectionDateTime)
CopyToCopies the entire CollectionT to a compatible one-dimensional Array, starting at the specified index of the target array.
(Inherited from CollectionDateTime)
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetEnumeratorReturns an enumerator that iterates through the CollectionT.
(Inherited from CollectionDateTime)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IndexOfSearches for the specified object and returns the zero-based index of the first occurrence within the entire CollectionT.
(Inherited from CollectionDateTime)
InsertInserts an element into the CollectionT at the specified index.
(Inherited from CollectionDateTime)
InsertItemInserts an element into the CollectionT at the specified index.
(Inherited from CollectionDateTime)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
RemoveRemoves the first occurrence of a specific object from the CollectionT.
(Inherited from CollectionDateTime)
RemoveAtRemoves the element at the specified index of the CollectionT.
(Inherited from CollectionDateTime)
RemoveItemRemoves the element at the specified index of the CollectionT.
(Inherited from CollectionDateTime)
RemoveRange Remove a range of items from the collection
SetItemReplaces the element at the specified index.
(Inherited from CollectionDateTime)
Sort This is used to sort the collection in ascending or descending order
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also