Click or drag to resize

NativeUtilsSetVarArgsValues Method

Assigns variable arguments values to the specified buffers.

Namespace:  SampSharp.Core.Natives.NativeObjects.FastNatives
Assembly:  SampSharp.Core (in SampSharp.Core.dll) Version: 0.0.0-local+709673996c0cc3c0733358a87691d1009326afa7
Syntax
C#
public static void SetVarArgsValues(
	int* args,
	int* values,
	Object[] varArgs,
	int argOffset,
	int valueOffset,
	VarArgsState state
)

Parameters

args
Type: SystemInt32*
The arguments buffer.
values
Type: SystemInt32*
The values buffer.
varArgs
Type: SystemObject
The variable arguments.
argOffset
Type: SystemInt32
The offset in the arguments buffer at which the varargs start.
valueOffset
Type: SystemInt32
The offset in the values buffer at which the varargs start.
state
Type: SampSharp.Core.Natives.NativeObjects.FastNativesVarArgsState
The state of the variable arguments.
See Also