FindResource

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool FindResource(
   IntPtr hModule,
   IntPtr lpName,
   IntPtr lpType
);

Microsoft documentation: Link

Last updated