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());
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.