コード例 #1
0
 /// <summary>
 /// Determines whether the time series contains a value.
 /// </summary>
 /// <param name="value">The value to look up.</param>
 /// <returns>True if the value appears in the time series, otherwise false.</returns>
 public bool Contains(double value)
 {
     return(data.Contains(value));
 }