0

I want to get the FileVersion (or ProductVersion) and the Comments fields which are in the "Version" tab of a dll using a c# code.

I tried to use the Assembly class, but didn't find the data I need.

Thanks in Advance.

starblue
  • 55,348
  • 14
  • 97
  • 151
Max
  • 1
  • 1

1 Answers1

0

That's because the Assembly only knows the AssemblyVersion. To get File information, you need to look at the file properties using FileVersionInfo.

Jeff B
  • 1,856
  • 2
  • 17
  • 28