SHVDN
v3
An ASI plugin for Grand Theft Auto V, which allows running scripts written in any .NET language in-game. Developed by crosire https://github.com/crosire/scripthookvdotnet/
|
An input argument passed to a script function. More...
Public Member Functions | |
InputArgument (ulong value) | |
Initializes a new instance of the InputArgument class to a script function input argument. More... | |
InputArgument (IntPtr value) | |
Initializes a new instance of the InputArgument class to a script function input argument. More... | |
InputArgument (object value) | |
Initializes a new instance of the InputArgument class and converts a managed object to a script function input argument. More... | |
override string | ToString () |
Converts the internal value of the argument to its equivalent string representation. More... | |
Static Public Member Functions | |
static implicit | operator InputArgument (bool value) |
static implicit | operator InputArgument (byte value) |
static implicit | operator InputArgument (sbyte value) |
static implicit | operator InputArgument (short value) |
static implicit | operator InputArgument (ushort value) |
static implicit | operator InputArgument (int value) |
static implicit | operator InputArgument (uint value) |
static implicit | operator InputArgument (long value) |
static implicit | operator InputArgument (ulong value) |
static implicit | operator InputArgument (float value) |
static implicit | operator InputArgument (double value) |
static implicit | operator InputArgument (Enum value) |
static implicit | operator InputArgument (string value) |
static unsafe implicit | operator InputArgument (char *value) |
static implicit | operator InputArgument (IntPtr value) |
static unsafe implicit | operator InputArgument (void *value) |
static implicit | operator InputArgument (OutputArgument value) |
An input argument passed to a script function.
GTA.Native.InputArgument.InputArgument | ( | ulong | value | ) |
Initializes a new instance of the InputArgument class to a script function input argument.
value | The pointer value. |
GTA.Native.InputArgument.InputArgument | ( | IntPtr | value | ) |
Initializes a new instance of the InputArgument class to a script function input argument.
value | The value. |
GTA.Native.InputArgument.InputArgument | ( | object | value | ) |
Initializes a new instance of the InputArgument class and converts a managed object to a script function input argument.
value | The object to convert. |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
override string GTA.Native.InputArgument.ToString | ( | ) |
Converts the internal value of the argument to its equivalent string representation.