Constructs a MismatchedSizeException instance with an error message containing
the dimensions of the two-dimensional operands.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public MismatchedSizeException( string operation, long row1, long col1, long row2, long col2 ) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ operation As String, _ row1 As Long, _ col1 As Long, _ row2 As Long, _ col2 As Long _ ) |
| Visual C++ |
|---|
public: MismatchedSizeException( String^ operation, long long row1, long long col1, long long row2, long long col2 ) |
Parameters
- operation
- Type: System..::.String
[Missing <param name="operation"/> documentation for "M:CenterSpace.NMath.Core.MismatchedSizeException.#ctor(System.String,System.Int64,System.Int64,System.Int64,System.Int64)"]
- row1
- Type: System..::.Int64
The first dimension size of the first operand.
- col1
- Type: System..::.Int64
The second dimension size of the first operand.
- row2
- Type: System..::.Int64
The first dimension size of the second operand.
- col2
- Type: System..::.Int64
The second dimension size of the second operand.