UInt16.INumberBase<UInt16>.MultiplyAddEstimate 方法

定义

计算 (left * right) + addend的估计值。

 static System::UInt16 System.Numerics.INumberBase<System.UInt16>.MultiplyAddEstimate(System::UInt16 left, System::UInt16 right, System::UInt16 addend) = System::Numerics::INumberBase<System::UInt16>::MultiplyAddEstimate;
static ushort INumberBase<ushort>.MultiplyAddEstimate (ushort left, ushort right, ushort addend);
static member System.Numerics.INumberBase<System.UInt16>.MultiplyAddEstimate : uint16 * uint16 * uint16 -> uint16
 Shared Function MultiplyAddEstimate (left As UShort, right As UShort, addend As UShort) As UShort Implements INumberBase(Of UShort).MultiplyAddEstimate

参数

left
UInt16

要与 right相乘的值。

right
UInt16

要与 left相乘的值。

addend
UInt16

要添加到 left 结果的值乘以 right

返回

估计 (left * right) + addend

实现

适用于