C# Class Microsoft.Xades.OtherValueCollection

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
Mostrar archivo Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
Add ( ) : OtherValue

Add new typed object to the collection

Add ( OtherValue objectToAdd ) : OtherValue

Add typed object to the collection

this ( int index ) : OtherValue

New typed indexer for the collection

Method Details

Add() public method

Add new typed object to the collection
public Add ( ) : OtherValue
return OtherValue

Add() public method

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

this() public method

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