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