Click or drag to resize
C2SeriesExtensionToTable Method (SeriesDateTime, Double)
Converts Series<DateTime, double> to IEnumerableSeries<ITimeSeriesPoint> which is accepted by TABLE.

Namespace:  C2LibraryBase.Interfaces
Assembly:  C2LibraryBase (in C2LibraryBase.dll) Version: 1.0
Syntax
C#
public static IEnumerable<ITimeSeriesPoint> ToTable(
	this Series<DateTime, double> series
)

Parameters

series
Type: DeedleSeriesDateTime, Double
Series<DateTime, double>

Return Value

Type: IEnumerableITimeSeriesPoint
IEnumerable<ITimeSeriesPoint>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SeriesDateTime, Double. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also