コード例 #1
0
 /// <summary>
 /// Finds the index at which a value occurs.
 /// </summary>
 /// <param name="value">The value to find.</param>
 /// <returns>An index at which <paramref name="value"/> occurs,
 /// or -1 if the value does not occur in the time series.</returns>
 public int IndexOf(double value)
 {
     return(data.IndexOf(value));
 }