<PackageReference Include="System.Data.SqlClient" Version="4.7.0-preview7.19362.9" />

SqlDouble

public struct SqlDouble : INullable, IComparable
Represents a floating-point number within the range of -1.79E +308 through 1.79E +308 to be stored in or retrieved from a database.
public static readonly SqlDouble MaxValue

A constant representing the maximum value for a SqlDouble structure.

public static readonly SqlDouble MinValue

A constant representing the minimum possible value of SqlDouble.

public static readonly SqlDouble Null

Represents a DBNull that can be assigned to this instance of the SqlDouble structure.

public static readonly SqlDouble Zero

Represents a zero value that can be assigned to the Value property of an instance of the SqlDouble structure.

public bool IsNull { get; }

Returns a Boolean value that indicates whether this SqlDouble instance is null.

public double Value { get; }

Gets the value of the SqlDouble structure. This property is read-only.

public SqlDouble(double value)

Initializes a new instance of the SqlDouble structure using the supplied double parameter to set the new SqlDouble structure&#39;s Value property.

public static SqlDouble Add(SqlDouble x, SqlDouble y)

The addition operator computes the sum of the two SqlDouble operands.

public static SqlDouble Divide(SqlDouble x, SqlDouble y)

The division operator divides the first SqlDouble operand by the second.

public static SqlBoolean Equals(SqlDouble x, SqlDouble y)

Performs a logical comparison on two instances of SqlDouble to determine whether they are equal.

Compares two instances of SqlDouble to determine whether the first is greater than the second.

Compares two instances of SqlDouble to determine whether the first is greater than or equal to the second.

public static SqlBoolean LessThan(SqlDouble x, SqlDouble y)

Compares two instances of SqlDouble to determine whether the first is less than the second.

Compares two instances of SqlDouble to determine whether the first is less than or equal to the second.

public static SqlDouble Multiply(SqlDouble x, SqlDouble y)

The multiplication operator computes the product of the two SqlDouble operands.

Compares two instances of SqlDouble to determine whether they are notequal.

The addition operator computes the sum of the two SqlDouble operands.

The division operator divides the first SqlDouble operand by the second.

Performs a logical comparison on two instances of SqlDouble to determine whether they are equal.

public static SqlDouble op_Explicit(SqlBoolean x)

Converts the supplied SqlBoolean parameter to SqlDouble.

public static double op_Explicit(SqlDouble x)

Converts the supplied SqlDouble structure to double.

public static SqlDouble op_Explicit(SqlString x)

Converts the supplied SqlString parameter to SqlDouble.

Compares two instances of SqlDouble to determine whether the first is greater than the second.

Compares two instances of SqlDouble to determine whether the first is greater than or equal to the second.

public static SqlDouble op_Implicit(SqlByte x)

Converts the supplied SqlByte parameter to SqlDouble.

public static SqlDouble op_Implicit(SqlDecimal x)

Converts the supplied SqlDecimal parameter to SqlDouble.

public static SqlDouble op_Implicit(SqlInt16 x)

Converts the supplied SqlInt16 parameter to SqlDouble.

public static SqlDouble op_Implicit(SqlInt32 x)

Converts the supplied SqlInt32 parameter to SqlDouble.

public static SqlDouble op_Implicit(SqlInt64 x)

Converts the supplied SqlInt64 parameter to SqlDouble.

public static SqlDouble op_Implicit(SqlMoney x)

Converts the supplied SqlMoney parameter to SqlDouble.

public static SqlDouble op_Implicit(SqlSingle x)

Converts the supplied SqlSingle parameter to SqlDouble.

public static SqlDouble op_Implicit(double x)

Converts the supplied double value to a SqlDouble.

Compares two instances of SqlDouble to determine whether they are not equal.

Compares two instances of SqlDouble to determine whether the first is less than the second.

Compares two instances of SqlDouble to determine whether the first is less than or equal to the second.

The multiplication operator computes the product of the two SqlDouble operands.

The subtraction operator the second SqlDouble operand from the first.

Returns the negated value of the specified SqlDouble structure.

public static SqlDouble Parse(string s)

Converts the String representation of a number to its double-precision floating point number equivalent.

public static SqlDouble Subtract(SqlDouble x, SqlDouble y)

The subtraction operator the second SqlDouble operand from the first.

public int CompareTo(SqlDouble value)

Compares this SqlDouble instance to the supplied SqlDouble and returns an indication of their relative values.

public int CompareTo(object value)

Compares this SqlDouble instance to the supplied Object and returns an indication of their relative values.

Converts this SqlDouble structure to SqlBoolean.

public SqlByte ToSqlByte()

Converts this SqlDouble structure to SqlByte.

Converts this SqlDouble structure to SqlDecimal.

Converts this SqlDouble structure to SqlInt16.

Converts this SqlDouble structure to SqlInt32.

Converts this SqlDouble structure to SqlInt64.

Converts this SqlDouble structure to SqlMoney.

Converts this SqlDouble structure to SqlSingle.

Converts this SqlDouble structure to SqlString.