SqlDouble.Equals Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a value that indicates whether an instance of SqlDouble and the supplied object parameter represent the same value.
Overloads
| Equals(SqlDouble) | 
						 Indicates whether the current instance is equal to another instance of the same type.  | 
        	
| Equals(Object) | 
						 Compares the supplied object parameter to the Value property of the SqlDouble object.  | 
        	
| Equals(SqlDouble, SqlDouble) | 
						 Performs a logical comparison on two instances of SqlDouble to determine whether they are equal.  | 
        	
Equals(SqlDouble)
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
Indicates whether the current instance is equal to another instance of the same type.
public:
 virtual bool Equals(System::Data::SqlTypes::SqlDouble other);
	public bool Equals(System.Data.SqlTypes.SqlDouble other);
	override this.Equals : System.Data.SqlTypes.SqlDouble -> bool
	Public Function Equals (other As SqlDouble) As Boolean
	Parameters
- other
 - SqlDouble
 
An instance to compare with this instance.
Returns
true if the current instance is equal to the other instance; otherwise, false.
Implements
Applies to
Equals(Object)
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
public:
 override bool Equals(System::Object ^ value);
	public override bool Equals(object? value);
	public override bool Equals(object value);
	override this.Equals : obj -> bool
	Public Overrides Function Equals (value As Object) As Boolean
	Parameters
- value
 - Object
 
The object to be compared.
Returns
true if the two values are equal. Otherwise, false.
See also
Applies to
Equals(SqlDouble, SqlDouble)
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
- Source:
 - SQLDouble.cs
 
Performs a logical comparison on two instances of SqlDouble to determine whether they are equal.
public:
 static System::Data::SqlTypes::SqlBoolean Equals(System::Data::SqlTypes::SqlDouble x, System::Data::SqlTypes::SqlDouble y);
	public static System.Data.SqlTypes.SqlBoolean Equals(System.Data.SqlTypes.SqlDouble x, System.Data.SqlTypes.SqlDouble y);
	static member Equals : System.Data.SqlTypes.SqlDouble * System.Data.SqlTypes.SqlDouble -> System.Data.SqlTypes.SqlBoolean
	Public Shared Function Equals (x As SqlDouble, y As SqlDouble) As SqlBoolean
	Parameters
Returns
true if the two values are equal. Otherwise, false.