Data Stream.Write Method
Definition
Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
Overload List
Write<T>(Matrix<T>) | Writes the two-dimensional array at the current position in the file. |
Write<T>(Vector<T>) | Writes the one-dimensional array at the current position in the file. |
Write<R, C>(DataFrame<R, C>) | Writes the data frame at the current position in the file. |
Write<R, C>(DataFrame<R, C>)
Writes the data frame at the current position in the file.
public abstract void Write<R, C>(
DataFrame<R, C> dataFrame
)
Parameters
- dataFrame DataFrame<R, C>
Type Parameters
- R
- The type of the row keys of the data frame.
- C
- The type of the column keys of the data frame.
Write<T>(Matrix<T>)
Writes the two-dimensional array at the current position in the file.
public abstract void Write<T>(
Matrix<T> matrix
)
Parameters
- matrix Matrix<T>
Type Parameters
- T
- The element type of the matrix.
Write<T>(Vector<T>)
Writes the one-dimensional array at the current position in the file.
public abstract void Write<T>(
Vector<T> vector
)
Parameters
- vector Vector<T>
Type Parameters
- T
- The element type of the vector.