C# question to ex-C++/ASM guys. Speed optimisation
- by maxima120
Which in C# compiled for x64 is faster?
a. int * int;
b. if(int < 0) int = -int;
c. Math.Abs(int)
I need pure theoretical answer. Please do not tell me to write loop and measure it with stopwatch.
Thanks