-2

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

MartinS
  • 731
  • 3
  • 12
  • 27

2 Answers2

1

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

Getting the source code for CLR to prove it!

Aniket Inge
  • 24,753
  • 5
  • 47
  • 78
0

This has full information on square root(Algorithm level)

Shrivallabh
  • 2,833
  • 2
  • 26
  • 46