Search code examples
c#sqrt

Implementation SQRT in C#


I need to know how is Math.Sqrt square root function implemented in c# by Microsoft. Is there anyone who knows it?


Solution

  • C# calls the native sqrt() from <cmath> C++.

    Getting the source code for CLR to prove it!