Share via


Sinh Method

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

Returns the hyperbolic sine of the specified angle.

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

Syntax

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

Parameters

Return Value

Type: System. . :: . .Double
The hyperbolic sine of value. If value is equal to NegativeInfinity, PositiveInfinity, or NaN, this method returns a Double equal to value.

Remarks

The angle, value, must be in radians. Multiply by Math..::..PI/180 to convert degrees to radians.

.NET Framework Security

See Also

Reference

Math Class

System Namespace