SqlCeFunctions.Sin Method

 

Returns the trigonometric sine of the specified angle.

Namespace:   System.Data.Entity.SqlServerCompact
Assembly:  EntityFramework.SqlServerCompact (in EntityFramework.SqlServerCompact.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticSin(Nullable<Decimal>)

Returns the trigonometric sine of the specified angle.

System_CAPS_pubmethodSystem_CAPS_staticSin(Nullable<Double>)

Returns the trigonometric sine of the specified angle.


SqlCeFunctions.Sin Method (Nullable<Decimal>)

Returns the trigonometric sine of the specified angle.

[DbFunctionAttribute("SqlServerCe", "SIN")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
public static Nullable<double> Sin(
	Nullable<decimal> arg
)

Parameters

arg
Type: System.Nullable<Decimal>

An angle, measured in radians.

Return Value

Type: System.Nullable<Double>

The trigonometric sine of the input expression.


SqlCeFunctions.Sin Method (Nullable<Double>)

Returns the trigonometric sine of the specified angle.

[DbFunctionAttribute("SqlServerCe", "SIN")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg")]
public static Nullable<double> Sin(
	Nullable<double> arg
)

Parameters

arg
Type: System.Nullable<Double>

An angle, measured in radians.

Return Value

Type: System.Nullable<Double>

The trigonometric sine of the input expression.