SqlCeFunctions.Acos Method

 

A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.

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

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticAcos(Nullable<Decimal>)

A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.

System_CAPS_pubmethodSystem_CAPS_staticAcos(Nullable<Double>)

A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.


SqlCeFunctions.Acos Method (Nullable<Decimal>)

A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.

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

Parameters

arg1
Type: System.Nullable<Decimal>

The cosine of an angle.

Return Value

Type: System.Nullable<Double>

An angle, measured in radians.


SqlCeFunctions.Acos Method (Nullable<Double>)

A mathematical function that returns the angle, in radians, whose cosine is the specified numerical value. This angle is called the arccosine.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[DbFunctionAttribute("SqlServerCe", "ACOS")]
public static Nullable<double> Acos(
	Nullable<double> arg1
)

Parameters

arg1
Type: System.Nullable<Double>

The cosine of an angle.

Return Value

Type: System.Nullable<Double>

The angle, in radians, defined by the input cosine value.