Dlfcn.SetArray(IntPtr, String, NSArray) Method

Definition

Sets the specified symbol in the library handle to the specified array value.

public static void SetArray (IntPtr handle, string symbol, Foundation.NSArray array);
static member SetArray : nativeint * string * Foundation.NSArray -> unit

Parameters

handle
IntPtr

nativeint

Handle to the dynamic library previously opened with dlopen(String, Int32).

symbol
String

Name of the public symbol in the dynamic library to look up.

array
NSArray

The array to set, can be null.

Remarks

The previous array is not released, it is up to the developer to release the handle to that array if needed.

Applies to