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
 

Ask a Question

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.

Ask a Question

Back
Top