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

  • Home
  • SEARCH
  • 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 6235927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:45:32+00:00 2026-05-24T10:45:32+00:00

I want to develop an application like Visual studio Object Browser, i.e. user will

  • 0

I want to develop an application like Visual studio Object Browser, i.e. user will enter something like System.Text namespace or system classes. After button click, we have to find out all classes, functions, properties etc. inside the “System.Text”.

I tried the following, but that failed.

        Assembly SampleAssembly;
        SampleAssembly = Assembly.Load("System.Text");

        Type[] Types = SampleAssembly.GetTypes();
        // Display all the types contained in the specified assembly.
        StringBuilder str = new StringBuilder();

        foreach (Type oType in Types)
        {
            str.Append(oType.Name.ToString() + "</br>");
        }
        divAsseblyData.InnerHtml = str.ToString();
  • 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-05-24T10:45:32+00:00Added an answer on May 24, 2026 at 10:45 am

    ‘System.Text’ is a namespace not an assembly so i assume you want to load the assembly ‘System’.

    To use Assembly.Load() with a string parameter you need to pass the fully qualified name of the assembly.

    To obtain the fully qualified name you can do something like this:

    Assembly SampleAssembly;
    SampleAssembly = Assembly.Load(typeof(System.Activator).Assembly.FullName);
    // get the type of some random object in the assembly (Activator) and then
    // call .Assembly.FullName which returns the fully qualified name of the assembly
    

    Or you can press Win + R, type “Assembly” and enter, then right click -> proprieties on the assembly which you need and set manually the proprieties in code in the format:

    “mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”

    SampleAssembly = Assembly.Load("mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to develop google desktop search like application, I want to know that
I want to develop a web application, like an online scheduler. (Yes I know
I want to develop a application like MS-Office specially like ms-word and excel. I
I want to develop a website web chat application like yahoo. Only difference is
I want to develop an application with simple Quiz-like games (think of a question
I am planning to develop a windows application in .net which will act like
I want to develop an application like Swing GUI Builder where drag and drop
I want to develop application that my database is not in the localhost, like
I am trying to develop an windows application like Google chrome Browser in WPF
I want to develop an application like biteSMS (for jailbroken iPhone). I have tried

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.