private static void TestMul6464(long a, long b, ulong highExpected, ulong lowExpected) { Int128 product = Int128.Mul(a, b); Assert.AreEqual(highExpected, product.High); Assert.AreEqual(lowExpected, product.Low); }