-2

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

MartinS
  • 751
  • 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
  • 25,375
  • 5
  • 50
  • 78
0

This has full information on square root(Algorithm level)

Shrivallabh
  • 2,863
  • 2
  • 27
  • 47