Need help

  • Thread starter Thread starter P.Sunil
  • Start date Start date
P

P.Sunil

how to get Assembly info,constructors,methods,properties
of "System" Name space using Type class..or any other
method
 
how to get Assembly info,constructors,methods,properties
of "System" Name space using Type class..or any other
method

You can start with calling Assembly.LoadWithPartialName("mscorlib"), so you
will get Assembly class instance. Next, you can get from it all information
you need. For example:
Assembly assembly=Assembly.LoadWithPartialName("mscorlib");
MessageBox.Show(assembly.GetName().Version.ToString());
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top