XsltConvert.ToDouble 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.
Converts the specified value to double
.
Overloads
ToDouble(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts a specified value to |
ToDouble(Int64) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts the specified value to |
ToDouble(XPathItem) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts a specified value to |
ToDouble(Decimal) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts the specified value to |
ToDouble(IList<XPathItem>) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts a specified value to |
ToDouble(Int32) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts the specified value to |
ToDouble(String)
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
Converts a specified value to double
.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static double ToDouble(System::String ^ value);
public static double ToDouble (string value);
static member ToDouble : string -> double
Public Shared Function ToDouble (value As String) As Double
Parameters
- value
- String
A value of type string
.
Returns
A value of type double
.
Applies to
ToDouble(Int64)
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
Converts the specified value to double
.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static double ToDouble(long value);
public static double ToDouble (long value);
static member ToDouble : int64 -> double
Public Shared Function ToDouble (value As Long) As Double
Parameters
Returns
A value of type double
.
Applies to
ToDouble(XPathItem)
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
Converts a specified value to double
.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static double ToDouble(System::Xml::XPath::XPathItem ^ item);
public static double ToDouble (System.Xml.XPath.XPathItem item);
static member ToDouble : System.Xml.XPath.XPathItem -> double
Public Shared Function ToDouble (item As XPathItem) As Double
Parameters
Returns
A value of type double
.
Applies to
ToDouble(Decimal)
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
Converts the specified value to double
.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static double ToDouble(System::Decimal value);
public static double ToDouble (decimal value);
static member ToDouble : decimal -> double
Public Shared Function ToDouble (value As Decimal) As Double
Parameters
- value
- Decimal
A value of type decimal
.
Returns
A value of type double
.
Applies to
ToDouble(IList<XPathItem>)
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
Converts a specified value to double
.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static double ToDouble(System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ listItems);
public static double ToDouble (System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems);
static member ToDouble : System.Collections.Generic.IList<System.Xml.XPath.XPathItem> -> double
Public Shared Function ToDouble (listItems As IList(Of XPathItem)) As Double
Parameters
Returns
A value of type double
.
Applies to
ToDouble(Int32)
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
- Source:
- XsltConvert.cs
Converts the specified value to double
.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static double ToDouble(int value);
public static double ToDouble (int value);
static member ToDouble : int -> double
Public Shared Function ToDouble (value As Integer) As Double
Parameters
- value
- Int32
A value of type int
.
Returns
A value of type double
.