次の方法で共有


Dlfcn.SetString メソッド

定義

オーバーロード

SetString(IntPtr, String, NSString)

ライブラリ ハンドル内の指定したシンボルを、指定した文字列値に設定します。

SetString(IntPtr, String, String)

ライブラリ ハンドル内の指定したシンボルを、指定した文字列値に設定します。

SetString(IntPtr, String, NSString)

ライブラリ ハンドル内の指定したシンボルを、指定した文字列値に設定します。

public static void SetString (IntPtr handle, string symbol, Foundation.NSString value);
static member SetString : nativeint * string * Foundation.NSString -> unit

パラメーター

handle
IntPtr

nativeint

で以前に開いた動的ライブラリへの dlopen(String, Int32)ハンドル。

symbol
String

参照する動的ライブラリ内のパブリック シンボルの名前。

value
NSString

設定する文字列は null にすることができます。

注釈

前の文字列値は解放されません。必要に応じて、その文字列へのハンドルを解放するのは開発者が行います。

適用対象

SetString(IntPtr, String, String)

ライブラリ ハンドル内の指定したシンボルを、指定した文字列値に設定します。

public static void SetString (IntPtr handle, string symbol, string value);
static member SetString : nativeint * string * string -> unit

パラメーター

handle
IntPtr

nativeint

で以前に開いた動的ライブラリへの dlopen(String, Int32)ハンドル。

symbol
String

参照する動的ライブラリ内のパブリック シンボルの名前。

value
String

設定する文字列は null にすることができます。

注釈

前の文字列値は解放されません。必要に応じて、その文字列へのハンドルを解放するのは開発者が行います。

適用対象