Constructs a MismatchedSizeException instance with an error message containing the
three incompatible lengths.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public MismatchedSizeException( string operation, long len1, long len2, long len3 ) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ operation As String, _ len1 As Long, _ len2 As Long, _ len3 As Long _ ) |
| Visual C++ |
|---|
public: MismatchedSizeException( String^ operation, long long len1, long long len2, long long len3 ) |
Parameters
- operation
- Type: System..::.String
Name of the operation being performed.
- len1
- Type: System..::.Int64
The length of the first operand.
- len2
- Type: System..::.Int64
The length of the second operand.
- len3
- Type: System..::.Int64
The length of the third operand.
Remarks
Used primarily for vector operands.