C# Class Microsoft.Xades.IndividualDataObjectsTimeStampCollection

Collection class that derives from ArrayList. It provides the minimally required functionality to add instances of typed classes and obtain typed elements through a custom indexer.
Inheritance: System.Collections.ArrayList
Datei anzeigen Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
Add ( TimeStamp objectToAdd ) : TimeStamp

Add typed object to the collection

Add ( string tagName ) : TimeStamp

Add new typed object to the collection

this ( int index ) : TimeStamp

New typed indexer for the collection

Method Details

Add() public method

Add typed object to the collection
public Add ( TimeStamp objectToAdd ) : TimeStamp
objectToAdd TimeStamp Typed object to be added to collection
return TimeStamp

Add() public method

Add new typed object to the collection
public Add ( string tagName ) : TimeStamp
tagName string Name of the tag when serializing into XML using GetXml()
return TimeStamp

this() public method

New typed indexer for the collection
public this ( int index ) : TimeStamp
index int Index of the object to retrieve from collection
return TimeStamp