Convert.ToDouble Method (Boolean)
Silverlight
Converts the value of the specified Boolean value to the equivalent double-precision floating point number.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Boolean
A Boolean value.
The following code sample illustrates the conversion of a Boolean value to a Double one, using ToDouble.
public void ConvertDoubleBool(double doubleVal) { bool boolVal; // Double to bool conversion cannot overflow. boolVal = System.Convert.ToBoolean(doubleVal); outputBlock.Text += String.Format("{0} as a Boolean is: {1}.", doubleVal, boolVal) + "\n"; // bool to double conversion cannot overflow. doubleVal = System.Convert.ToDouble(boolVal); outputBlock.Text += String.Format("{0} as a double is: {1}.", boolVal, doubleVal) + "\n"; }
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.