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