I have a C# application that loads resources from dlls (these dlls contain only resources, no any code). For working with resources it uses WinAPI
functions like LoadLibrary()
, FindResource()
, etc.
But I want to make it portable into other operating systems (OS X, Linux, iOS, Android, WP). Obviously, these operating systems don't have KERNEL32.DLL
or USER32.DLL
. So is there any alternatives for WinAPI
usage that are written on pure C# and so will work on other platforms?