Reads the two-dimensional array at the current position in the file.
Namespace:
Extreme.Data.Json
Assembly:
Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.0
public override Matrix<T> ReadMatrix<T>(
bool strict
)
Public Overrides Function ReadMatrix(Of T) (
strict As Boolean
) As Matrix(Of T)
public:
generic<typename T>
virtual Matrix<T>^ ReadMatrix(
bool strict
) override
abstract ReadMatrix :
strict : bool -> Matrix<'T>
override ReadMatrix :
strict : bool -> Matrix<'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 matrix.
Return Value
Type:
MatrixTA matrix containing the data.
Reference