Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IMultiplyOperators<TSelf,TOther,TResult> Interface

Definition

Namespace:
System.Numerics
Assembly:
System.Runtime.dll
Source:
IMultiplyOperators.cs
Source:
IMultiplyOperators.cs
Source:
IMultiplyOperators.cs
Source:
IMultiplyOperators.cs
Source:
IMultiplyOperators.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Defines a mechanism for computing the product of two values.

generic <typename TSelf, typename TOther, typename TResult>
 where TSelf : IMultiplyOperators<TSelf, TOther, TResult>public interface class IMultiplyOperators
public interface IMultiplyOperators<TSelf,TOther,TResult> where TSelf : IMultiplyOperators<TSelf,TOther,TResult>
type IMultiplyOperators<'Self, 'Other, 'Result (requires 'Self :> IMultiplyOperators<'Self, 'Other, 'Result>)> = interface
Public Interface IMultiplyOperators(Of TSelf, TOther, TResult)

Type Parameters

TSelf

The type that implements this interface.

TOther

The type that will multiply TSelf.

TResult

The type that contains the product of TSelf and TOther.

Derived

Operators

Name Description
CheckedMultiply(TSelf, TOther)

Multiplies two values together to compute their product.

Multiply(TSelf, TOther)

Multiplies two values together to compute their product.

Applies to


Feedback

Was this page helpful?