RdataFile.ReadVector Method

Definition

Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ReadVector<T>(Stream) Reads a vector from the specified file.
ReadVector<T>(Stream, String) Reads the vector with the specified name from a stream.
ReadVector<T>(String, Boolean) Reads a vector from the specified file.
ReadVector<T>(String, String, Boolean) Reads the vector with the specified name from a file.

RdataFile.ReadVector<T>(Stream)

Reads a vector from the specified file.
C#
public static Vector<T> ReadVector<T>(
	Stream stream
)

Parameters

stream  Stream
The stream to read from.

Type Parameters

T

Return Value

Vector<T>
The vector that was read from the stream.

RdataFile.ReadVector<T>(Stream, String)

Reads the vector with the specified name from a stream.
C#
public static Vector<T> ReadVector<T>(
	Stream stream,
	string name
)

Parameters

stream  Stream
The stream to read from.
name  String
The name of the vector to read.

Type Parameters

T

Return Value

Vector<T>
The vector that was read from the stream.

RdataFile.ReadVector<T>(String, Boolean)

Reads a vector from the specified file.
C#
public static Vector<T> ReadVector<T>(
	string path,
	bool strict = false
)

Parameters

path  String
The file to read from.
strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true), or whether conversions are allowed (false).

Type Parameters

T

Return Value

Vector<T>
The vector that was read from the file.

RdataFile.ReadVector<T>(String, String, Boolean)

Reads the vector with the specified name from a file.
C#
public static Vector<T> ReadVector<T>(
	string path,
	string name,
	bool strict = false
)

Parameters

path  String
The file to read from.
name  String
The name of the vector to read.
strict  Boolean  (Optional)
Specifies whether the element type should be matched exactly (true), or whether conversions are allowed (false).

Type Parameters

T

Return Value

Vector<T>
The vector that was read from the file.

See Also