Share via


SqlFunctions.Sin Method

Definition

Overloads

Sin(Nullable<Decimal>)

Returns the trigonometric sine of the specified angle.

Sin(Nullable<Double>)

Returns the trigonometric sine of the specified angle.

Sin(Nullable<Decimal>)

Returns the trigonometric sine of the specified angle.

[System.Data.Entity.DbFunction("SqlServer", "SIN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Sin (Nullable<decimal> arg);
static member Sin : Nullable<decimal> -> Nullable<double>
Public Shared Function Sin (arg As Nullable(Of Decimal)) As Nullable(Of Double)

Parameters

arg
Nullable<Decimal>

An angle, measured in radians.

Returns

The trigonometric sine of the input expression.

Attributes

Applies to

Sin(Nullable<Double>)

Returns the trigonometric sine of the specified angle.

[System.Data.Entity.DbFunction("SqlServer", "SIN")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg")]
public static Nullable<double> Sin (Nullable<double> arg);
static member Sin : Nullable<double> -> Nullable<double>
Public Shared Function Sin (arg As Nullable(Of Double)) As Nullable(Of Double)

Parameters

arg
Nullable<Double>

An angle, measured in radians.

Returns

The trigonometric sine of the input expression.

Attributes

Applies to