devxlogo

Use the Math.BigMul Method to Find Multiple Large Integers

System.Math provides the BigMul method for cases where you have to find the product of two large integer numerals that may result in a value that would cause an System.Overflow Exception. The BigMul method returns a long number, which avoids the overflow.

System.Int32 i = 245525352;System.Int32 j = 245552352;System.Int32 k = 0;//This one will workvar result = System.Math.BigMul(i, j);//This one will throw Arithmetic overflow exceptionk = i * j;

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.