Reads the one-dimensional array at the current position in the file.
Namespace:
Extreme.Data.Stata
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public override Vector<T> ReadVector<T>(
bool strict
)
Public Overrides Function ReadVector(Of T) (
strict As Boolean
) As Vector(Of T)
public:
generic<typename T>
virtual Vector<T>^ ReadVector(
bool strict
) override
abstract ReadVector :
strict : bool -> Vector<'T>
override ReadVector :
strict : bool -> Vector<'T>
Parameters
- strict
- 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