show/hide this revision's text 4 added 376 characters in body

Disable Overflow Checking.
Project Properties -> Compile -> Advanced Compile Options -> Remove Integer Overflow Checks.
If you need overflow checking for the rest of the project you may move the code to a new project (for example a DLL) and disable overflow checking for that new project.

Also make sure that you are running a release build(optimizations enabled) and you are not debugging it.

EDIT: I get 8.5s (12s if I declare the array inside the For I'm using for testing) for calling the function 50 millons times. If you are getting only 32000 either you are using very large inputs or something is slowing down your code. For example if you are counting the time inside the program and you are running it in a profiler you will get wrong results as profiling can slowdown the program dramatically. Also glitches like this http://stackoverflow.com/questions/383735/slow-methods-calls may affect performance.

show/hide this revision's text 3 added 220 characters in body

Disable Overflow Checking.
Project Properties -> Compile -> Advanced Compile Options -> Remove Integer Overflow Checks.
If you need overflow checking for the rest of the project you may move the code to a new project (for example a DLL) and disable overflow checking for that new project.

Also make sure that you are running a release build(optimizations enabled) and you are not debugging it.

EDIT: I get 8.5s (12s if I declare the array inside the For I'm using for testing) for calling the function 50 millons times. If you are getting only 32000 either you are using very large inputs or something is slowing down your code.

show/hide this revision's text 2 added 113 characters in body

Disable Overflow Checking.
Project Properties -> Compile -> Advanced Compile Options -> Remove Integer Overflow Checks.
If you need overflow checking for the rest of the project you may move the code to a new project (for example a DLL) and disable overflow checking for that new project.

Also make sure that you are running a release build(optimizations enabled) and you are not debugging it.

show/hide this revision's text 1