Reads the vector with the specified name from a stream.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public static Vector<T> ReadVector<T>(
Stream stream,
string name
)
Public Shared Function ReadVector(Of T) (
stream As Stream,
name As String
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ ReadVector(
Stream^ stream,
String^ name
)
static member ReadVector :
stream : Stream *
name : string -> Vector<'T>
Parameters
- stream
- Type: System.IOStream
The stream to read from. - name
- Type: SystemString
The name of the vector to read.
Type Parameters
- T
Return Value
Type:
VectorTThe vector that was read from the stream.
Reference