SByte.INumberBase<SByte>.MultiplyAddEstimate 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算 (left
* right
) + addend
的估计值。
static System::SByte System.Numerics.INumberBase<System.SByte>.MultiplyAddEstimate(System::SByte left, System::SByte right, System::SByte addend) = System::Numerics::INumberBase<System::SByte>::MultiplyAddEstimate;
static sbyte INumberBase<sbyte>.MultiplyAddEstimate (sbyte left, sbyte right, sbyte addend);
static member System.Numerics.INumberBase<System.SByte>.MultiplyAddEstimate : sbyte * sbyte * sbyte -> sbyte
Shared Function MultiplyAddEstimate (left As SByte, right As SByte, addend As SByte) As SByte Implements INumberBase(Of SByte).MultiplyAddEstimate
参数
- left
- SByte
要与 right
相乘的值。
- right
- SByte
要与 left
相乘的值。
- addend
- SByte
要添加到 left
结果的值乘以 right
。
返回
估计 (left
* right
) + addend
。