0

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?

Keith Payne
  • 3,002
  • 16
  • 30
maxpovver
  • 1,580
  • 14
  • 25

1 Answers1

0

I think you need to read these links:

Community
  • 1
  • 1
shA.t
  • 16,580
  • 5
  • 54
  • 111