Share via


Sqrt Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Returns the square root of a specified number.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared Function Sqrt ( _
    d As Double _
) As Double
public static double Sqrt(
    double d
)
public:
static double Sqrt(
    double d
)
static member Sqrt : 
        d:float -> float 
public static function Sqrt(
    d : double
) : double

Parameters

Return Value

Type: System. . :: . .Double
One of the values in the following table.

d parameter

Return value

Zero or positive

The positive square root of d.

Negative

NaN

Equals NaN

NaN

Equals PositiveInfinity

PositiveInfinity

.NET Framework Security

See Also

Reference

Math Class

System Namespace