I was looking for an efficient approach for calculating ab (say a = 2
and b = 50
). To start things up, I decided to take a look at the implementation of Math.Pow()
function. But in .NET Reflector, all I found was this:
[MethodImpl(MethodImplOptions.InternalCall), SecuritySafeCritical]
public static extern double Pow(double x, double y);
What are some of the resources wherein I can see as what’s going on inside when I call Math.Pow()
function?