C# Class TimeSeriesLibrary.TimeSeriesValue

This class stores a date/value pair. A timeseries can then be composed from an array of such objects. The class is designed for use by .NET. COM callers will instead use the equivalent TSDateValueStruct struct.
Afficher le fichier Open project: hydrologics/TimeSeriesLibrary Class Usage Examples

Méthodes publiques

Méthode Description
ValueEquals ( Object obj ) : System.Boolean

This method checks whether the values of all properties of the given object are the same as the properties of this object. The given object may be of any type, so the method checks whether it is of type TimeSeriesValue (if not, it returns false).

Method Details

ValueEquals() public méthode

This method checks whether the values of all properties of the given object are the same as the properties of this object. The given object may be of any type, so the method checks whether it is of type TimeSeriesValue (if not, it returns false).
public ValueEquals ( Object obj ) : System.Boolean
obj Object the object to compare to this object
Résultat System.Boolean