How to get the Assembly Version Number

  • Thread starter Thread starter Brian
  • Start date Start date
If the files you are checking are .NET assemblies like the title of
your post implies then you can use this

Assembly assembly = Assembly.LoadFrom(@"\path to the
file\some_assembly.dll");

from there you can test the assembly variable for version numbers

Jeremy
 
Back
Top