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); 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); Source: https://ru.stackoverflow.com/questions/872073/
All Articles
DllImportis just an attribute pointing to a dynamic link library (DLL) from which the specified method is called (in this casemono_image_loaded). To get a list of just the names of the methods, just look at the export tablemono.dll, - such a dumper is written on the lap in fifteen minutes. If you break the code, take thedumpbinand 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, themonoproject is open source. - greg zakharov