In .NET C # 3.5, I have a console application (A) that references multiple assemblies (X, Y, Z).
How can I get version information of loaded assemblies at runtime?
I can use reflection to get information about the current executable assembly, for example
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()
but not loaded assemblies. Thank you for your help!
Ash machine
source share