| ComplexSubtraction Operator  | 
 
            Subtracts two complex numbers and returns the result.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic static Complex operator -(
	Complex left,
	Complex right
)
Public Shared Operator - ( 
	left As Complex,
	right As Complex
) As Complex
public:
static Complex operator -(
	Complex left, 
	Complex right
)
static let inline (-)
        left : Complex * 
        right : Complex  : ComplexParameters
- left
- Type: AGI.Foundation.CoordinatesComplex
 The complex number to subtract from.
- right
- Type: AGI.Foundation.CoordinatesComplex
 The complex number to subtract.
Return Value
Type: 
ComplexThe complex number that is the difference.
 See Also
See Also