Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8716623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T06:07:43+00:00 2026-06-13T06:07:43+00:00

Hey, my question is simple but I can’t find a way to do this.

  • 0
  1. Hey, my question is simple but I can’t find a way to do this.

What I try to do is:
I try to get all the DLL Imports and the functions used from an EXE or DLL.

So let’s say I make a program with the: SendMessage (DLL Import)
Then the code would manage to read that.

And return like:

DLL: user32.dll

Function: SendMessage

I have tried using the: Assembly. But no luck getting correct data from it.

(I did look at: How to programatically read native DLL imports in C#?
But didn’t get it to work there either, I got 1 import, but nothing more)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T06:07:44+00:00Added an answer on June 13, 2026 at 6:07 am

    A pure reflection approach

        static void Main(string[] args)
        {
            DumpExports(typeof (string).Assembly);
        }
    
        public static void DumpExports( Assembly assembly)
        {
    
            Dictionary<Type, List<MethodInfo>> exports = assembly.GetTypes()
                .SelectMany(type => type.GetMethods(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static)
                                        .Where(method => method.GetCustomAttributes(typeof (DllImportAttribute), false).Length > 0))
                .GroupBy(method => method.DeclaringType)
                .ToDictionary( item => item.Key, item => item.ToList())
                ;
    
            foreach( var item in exports )
            {
                Console.WriteLine(item.Key.FullName);
    
                foreach( var method in  item.Value )
                {
                    DllImportAttribute attr = method.GetCustomAttributes(typeof (DllImportAttribute), false)[0] as DllImportAttribute;
                    Console.WriteLine("\tDLL: {0}, Function: {1}", attr.Value, method.Name);
                }
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey this is a simple question but i can't seem to find an answer
Hey all - simple CSS newbie question, but I can't seem to enter the
Hey guys, sorry for this probably fairly simple question but I'm starting to get
Hey guys, This could be a noob question, but I really can't find any
Hey this might be a simple question, but i have been stumped on it
This seems to me like a very simple question, but I can't seem to
Hey this may be a somewhat simple question, but I'm new to Eclipse and
Hey Everyone, This question seems really silly to me, but I can't for the
Hey this might be a simple question, but I have never had to import
Seems like a simple enough question but I can't seem to find the answer.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.