GetModuleHandle

[DllImport("coredll.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern IntPtr GetModuleHandle(
   string lpModuleName
);

Microsoft documentation: Link

Last updated