Click or drag to resize
MathAsin Method
Returns the angle whose sine is the specified number.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static double Asin(
	double d
)

Parameters

d
Type: SystemDouble
A number representing a sine, where d must be greater than or equal to -1, but less than or equal to 1.

Return Value

Type: Double
An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2 -or- NaN if d < -1 or d > 1 or d equals NaN.
See Also