 | MismatchedSizeException Constructor (String, Int64, Int64) |
Constructs a MismatchedSizeException instance with an error message containing the
two incompatible lengths.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic MismatchedSizeException(
string operation,
long len1,
long len2
)
Public Sub New (
operation As String,
len1 As Long,
len2 As Long
)
public:
MismatchedSizeException(
String^ operation,
long long len1,
long long len2
)
new :
operation : string *
len1 : int64 *
len2 : int64 -> MismatchedSizeException
Parameters
- operation
- Type: SystemString
Name of the operation being performed. - len1
- Type: SystemInt64
The length of the first operand. - len2
- Type: SystemInt64
The length of the second operand.
RemarksUsed primarily for vector operands.
See Also