NewTOAPIA.Net.Rtp.GF16.Multiply C# (CSharp) Method

Multiply() public static method

Multiply 2 operandes
public static Multiply ( UInt16 a, UInt16 b ) : UInt16
a System.UInt16 First operande
b System.UInt16 Second operande
return System.UInt16
        public static UInt16 Multiply (UInt16 a, UInt16 b)
        {
            if (a == 0 || b == 0) return 0;

            return ALog[unchecked(Log[a] + Log[b])];
        }