Tell me where you can find all the possible DllImport list from mono.dll For example

[DllImport("mono.dll")] public static extern IntPtr mono_image_loaded(string name); 
  • DllImport is just an attribute pointing to a dynamic link library (DLL) from which the specified method is called (in this case mono_image_loaded ). To get a list of just the names of the methods, just look at the export table mono.dll , - such a dumper is written on the lap in fifteen minutes. If you break the code, take the dumpbin and go ahead. And in order to get the parameters of these methods, you will need debugging symbols. Although it's easier to just watch the source, for, if memory serves, the mono project is open source. - greg zakharov

0