NativeLibrary.GetExport(IntPtr, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取导出的符号的地址。
public:
static IntPtr GetExport(IntPtr handle, System::String ^ name);
public static IntPtr GetExport (IntPtr handle, string name);
static member GetExport : nativeint * string -> nativeint
Public Shared Function GetExport (handle As IntPtr, name As String) As IntPtr
参数
- handle
-
IntPtr
nativeint
本机库 OS 句柄。
- name
- String
导出的符号的名称。
返回
IntPtr
nativeint
符号的地址。
例外
handle
为 Zero 或 name
为 null
。
未找到符号。
注解
这是一个围绕 OS 调用的简单包装器,不执行任何名称翻转。
不支持使用非IntPtr.Zero无效handle
参数调用此方法,这将导致未定义的行为。