Share via


SqlFunctions.Radians Method

Definition

Overloads

Radians(Nullable<Decimal>)

Returns the radian measure corresponding to the specified angle in degrees.

Radians(Nullable<Double>)

Returns the radian measure corresponding to the specified angle in degrees.

Radians(Nullable<Int32>)

Returns the radian measure corresponding to the specified angle in degrees.

Radians(Nullable<Int64>)

Returns the radian measure corresponding to the specified angle in degrees.

Radians(Nullable<Decimal>)

Returns the radian measure corresponding to the specified angle in degrees.

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

Parameters

arg
Nullable<Decimal>

The angle, measured in degrees.

Returns

The radian measure of the specified angle.

Attributes

Applies to

Radians(Nullable<Double>)

Returns the radian measure corresponding to the specified angle in degrees.

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

Parameters

arg
Nullable<Double>

The angle, measured in degrees.

Returns

The radian measure of the specified angle.

Attributes

Applies to

Radians(Nullable<Int32>)

Returns the radian measure corresponding to the specified angle in degrees.

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

Parameters

arg
Nullable<Int32>

The angle, measured in degrees

Returns

The radian measure of the specified angle.

Attributes

Applies to

Radians(Nullable<Int64>)

Returns the radian measure corresponding to the specified angle in degrees.

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

Parameters

arg
Nullable<Int64>

The angle, measured in degrees

Returns

The radian measure of the specified angle.

Attributes

Applies to