V8FastArgs.GetDouble Method |
Gets the
Double value of the argument at the specified index.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic double GetDouble(
int index,
string name = null
)
Public Function GetDouble (
index As Integer,
Optional name As String = Nothing
) As Double
public:
double GetDouble(
int index,
String^ name = nullptr
)
member GetDouble :
index : int *
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> float
Parameters
- index Int32
- The argument index.
- name String (Optional)
- An optional argument or property name.
Return Value
DoubleThe
Double value of the argument at the specified index.
Remarks
This method throws an exception if the operation fails.
See Also