Writes the one-dimensional array with the specified name to the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public void Write<T>(
Vector<T> vector,
string name
)
Public Sub Write(Of T) (
vector As Vector(Of T),
name As String
)
public:
generic<typename T>
void Write(
Vector<T>^ vector,
String^ name
)
member Write :
vector : Vector<'T> *
name : string -> unit
Parameters
- vector
- Type: Extreme.MathematicsVectorT
The vector to write to the data stream. - name
- Type: SystemString
The name of the matrix to read.
Type Parameters
- T
- The element type of the vector.
Return Value
Type:
A vector containing the data.
Reference