Loadresource

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.SysInt)]
public static extern IntPtr LoadResource(IntPtr hModule,
   IntPtr hResInfo
);

Microsoft documentation: Link

Last updated