Reads the one-dimensional array with the specified name in the file.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public Vector<T> ReadVector<T>(
string name,
bool strict = false
)
Public Function ReadVector(Of T) (
name As String,
Optional strict As Boolean = false
) As Vector(Of T)
public:
generic<typename T>
Vector<T>^ ReadVector(
String^ name,
bool strict = false
)
member ReadVector :
name : string *
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Vector<'T>
Parameters
- name
- Type: SystemString
The name of the matrix to read. - strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (, the default), or whether
conversions are allowed ().
Type Parameters
- T
- The element type of the vector.
Return Value
Type:
VectorTA vector containing the data.
Reference