Reads the one-dimensional array at the current position in the file.
Namespace:
Extreme.Data.Text
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public override Vector<T> ReadVector<T>(
bool strict = false
)
Public Overrides Function ReadVector(Of T) (
Optional strict As Boolean = false
) As Vector(Of T)
public:
generic<typename T>
virtual Vector<T>^ ReadVector(
bool strict = false
) override
abstract ReadVector :
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Vector<'T>
override ReadVector :
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> Vector<'T>
Parameters
- strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed ().
Type Parameters
- T
- The element type of the vector.
Return Value
Type:
VectorTA vector containing the data.
Reference