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());
 
Back
Top