This topic has not yet been rated - Rate this topic

SqlDouble Structure

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.

Namespace:  System.Data.SqlTypes
Assembly:  System.Data (in System.Data.dll)
[SerializableAttribute]
public struct SqlDouble : INullable, IComparable, 
	IXmlSerializable

The SqlDouble type exposes the following members.

  Name Description
Public method Supported by the XNA Framework SqlDouble Initializes a new instance of the SqlDouble structure using the supplied double parameter to set the new SqlDouble structure's Value property.
Top
  Name Description
Public property Supported by the XNA Framework IsNull Returns a Boolean value that indicates whether this SqlDouble instance is null.
Public property Supported by the XNA Framework Value Gets the value of the SqlDouble structure. This property is read-only.
Top
  Name Description
Public method Static member Supported by the XNA Framework Add The addition operator computes the sum of the two SqlDouble operands.
Public method Supported by the XNA Framework CompareTo(Object) Compares this SqlDouble instance to the supplied Object and returns an indication of their relative values.
Public method Supported by the XNA Framework CompareTo(SqlDouble) Compares this SqlDouble instance to the supplied SqlDouble and returns an indication of their relative values.
Public method Static member Supported by the XNA Framework Divide The division operator divides the first SqlDouble operand by the second.
Public method Supported by the XNA Framework Equals(Object) Compares the supplied object parameter to the Value property of the SqlDouble object. (Overrides ValueType.Equals(Object).)
Public method Static member Supported by the XNA Framework Equals(SqlDouble, SqlDouble) Performs a logical comparison on two instances of SqlDouble to determine whether they are equal.
Protected method Supported by the XNA Framework Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by the XNA Framework GetHashCode Returns the hash code for this SqlDouble structre. (Overrides ValueType.GetHashCode().)
Public method Supported by the XNA Framework GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Static member Supported by the XNA Framework GetXsdType Returns the XML Schema definition language (XSD) of the specified XmlSchemaSet.
Public method Static member Supported by the XNA Framework GreaterThan Compares two instances of SqlDouble to determine whether the first is greater than the second.
Public method Static member Supported by the XNA Framework GreaterThanOrEqual Compares two instances of SqlDouble to determine whether the first is greater than or equal to the second.
Public method Static member Supported by the XNA Framework LessThan Compares two instances of SqlDouble to determine whether the first is less than the second.
Public method Static member Supported by the XNA Framework LessThanOrEqual Compares two instances of SqlDouble to determine whether the first is less than or equal to the second.
Protected method Supported by the XNA Framework MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Static member Supported by the XNA Framework Multiply The multiplication operator computes the product of the two SqlDouble operands.
Public method Static member Supported by the XNA Framework NotEquals Compares two instances of SqlDouble to determine whether they are notequal.
Public method Static member Supported by the XNA Framework Parse Converts the String representation of a number to its double-precision floating point number equivalent.
Public method Static member Supported by the XNA Framework Subtract The subtraction operator the second SqlDouble operand from the first.
Public method Supported by the XNA Framework ToSqlBoolean Converts this SqlDouble structure to SqlBoolean.
Public method Supported by the XNA Framework ToSqlByte Converts this SqlDouble structure to SqlByte.
Public method Supported by the XNA Framework ToSqlDecimal Converts this SqlDouble structure to SqlDecimal.
Public method Supported by the XNA Framework ToSqlInt16 Converts this SqlDouble structure to SqlInt16.
Public method Supported by the XNA Framework ToSqlInt32 Converts this SqlDouble structure to SqlInt32.
Public method Supported by the XNA Framework ToSqlInt64 Converts this SqlDouble structure to SqlInt64.
Public method Supported by the XNA Framework ToSqlMoney Converts this SqlDouble structure to SqlMoney.
Public method Supported by the XNA Framework ToSqlSingle Converts this SqlDouble structure to SqlSingle.
Public method Supported by the XNA Framework ToSqlString Converts this SqlDouble structure to SqlString.
Public method Supported by the XNA Framework ToString Converts this SqlDouble structure to a string. (Overrides ValueType.ToString().)
Top
  Name Description
Public operator Static member Supported by the XNA Framework Addition The addition operator computes the sum of the two SqlDouble operands.
Public operator Static member Supported by the XNA Framework Division The division operator divides the first SqlDouble operand by the second.
Public operator Static member Supported by the XNA Framework Equality Performs a logical comparison on two instances of SqlDouble to determine whether they are equal.
Public operator Static member Supported by the XNA Framework Explicit(SqlBoolean to SqlDouble) Converts the supplied SqlBoolean parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Explicit(SqlDouble to Double) Converts the supplied SqlDouble structure to double.
Public operator Static member Supported by the XNA Framework Explicit(SqlString to SqlDouble) Converts the supplied SqlString parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework GreaterThan Compares two instances of SqlDouble to determine whether the first is greater than the second.
Public operator Static member Supported by the XNA Framework GreaterThanOrEqual Compares two instances of SqlDouble to determine whether the first is greater than or equal to the second.
Public operator Static member Supported by the XNA Framework Implicit(Double to SqlDouble) Converts the supplied double value to a SqlDouble.
Public operator Static member Supported by the XNA Framework Implicit(SqlByte to SqlDouble) Converts the supplied SqlByte parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Implicit(SqlDecimal to SqlDouble) Converts the supplied SqlDecimal parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Implicit(SqlInt16 to SqlDouble) Converts the supplied SqlInt16 parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Implicit(SqlInt32 to SqlDouble) Converts the supplied SqlInt32 parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Implicit(SqlInt64 to SqlDouble) Converts the supplied SqlInt64 parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Implicit(SqlMoney to SqlDouble) Converts the supplied SqlMoney parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Implicit(SqlSingle to SqlDouble) Converts the supplied SqlSingle parameter to SqlDouble.
Public operator Static member Supported by the XNA Framework Inequality Compares two instances of SqlDouble to determine whether they are not equal.
Public operator Static member Supported by the XNA Framework LessThan Compares two instances of SqlDouble to determine whether the first is less than the second.
Public operator Static member Supported by the XNA Framework LessThanOrEqual Compares two instances of SqlDouble to determine whether the first is less than or equal to the second.
Public operator Static member Supported by the XNA Framework Multiply The multiplication operator computes the product of the two SqlDouble operands.
Public operator Static member Supported by the XNA Framework Subtraction The subtraction operator the second SqlDouble operand from the first.
Public operator Static member Supported by the XNA Framework UnaryNegation Returns the negated value of the specified SqlDouble structure.
Top
  Name Description
Public field Static member Supported by the XNA Framework MaxValue A constant representing the maximum value for a SqlDouble structure.
Public field Static member Supported by the XNA Framework MinValue A constant representing the minimum possible value of SqlDouble.
Public field Static member Supported by the XNA Framework Null Represents a DBNull that can be assigned to this instance of the SqlDouble structure.
Public field Static member Supported by the XNA Framework Zero Represents a zero value that can be assigned to the Value property of an instance of the SqlDouble structure.
Top
  Name Description
Explicit interface implemetation Private method Supported by the XNA Framework IXmlSerializable.GetSchema This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Explicit interface implemetation Private method Supported by the XNA Framework IXmlSerializable.ReadXml This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Explicit interface implemetation Private method Supported by the XNA Framework IXmlSerializable.WriteXml This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Top

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ