Is there any way to get a list of the exported functions from a x86 DLL in C#? I know of Mono.Cecil that can decompile .NET DLLs to provide a list of the types/members, but searches come up blank when I search for x86 DLLs.
I'm looking at building a "DLL explorer" tool that lists the exported functions, enabling me to get a quick peek into DLLs and see the functionality.
Similar: