you can't open them with IL Disassembler,
Code:
//for the version
textBox1.Text=Assembly.GetExecutingAssembly().GetName().Version.ToString();
//in generally(i.e for copyright info)
foreach(object o in Assembly.GetExecutingAssembly().GetCustomAttributes(true))
if (o is System.Reflection.AssemblyCopyrightAttribute)
{
System.Reflection.AssemblyCopyrightAttribute at=o as System.Reflection.AssemblyCopyrightAttribute;
textBox1.Text=at.Copyright;
}
//...
_____________
Mehdi.
software student.