-
file version?
is it possible in C# to get a version of a particular file? I am trying to do some versioning matching etc... going on but cannot seem to find a method that checks the current file for a version....
any ideas?
[edit]found it. Class: FileVersionInfo
however, i cannot seem to tell it to check a file....
[/edit]
-
Re: file version?
The FileVersionInfo class has no public constructor, so you cannot create an instance using the New keyword. You use the Shared method GetVersionInfo to get an instance.
-
Re: file version?