FileVersionInfo.ProductVersion 属性    
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与此文件一起发行的产品的版本。
public:
 property System::String ^ ProductVersion { System::String ^ get(); };
	public string? ProductVersion { get; }
	public string ProductVersion { get; }
	member this.ProductVersion : string
	Public ReadOnly Property ProductVersion As String
	属性值
与此文件一起发行的产品的版本,当文件不包含版本信息时则为 null。
示例
以下示例调用 GetVersionInfo 以获取 FileVersionInfo 记事本的 。 然后,它会在文本框中打印 ProductVersion 。 此代码假定 textBox1 已实例化。
private:
    void GetProductVersion()
    {
        // Get the file version for the notepad.
        FileVersionInfo^ myFileVersionInfo =
            FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
        // Print the product version number.
        textBox1->Text = String::Concat( "Product version number: ", myFileVersionInfo->ProductVersion );
    }
private void GetProductVersion()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo =
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
    // Print the product version number.
    textBox1.Text = "Product version number: " + myFileVersionInfo.ProductVersion;
 }
Private Sub GetProductVersion()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print the product version number.
    textBox1.Text = "Product version number: " & myFileVersionInfo.ProductVersion
End Sub
	注解
通常,版本号显示为“major number.minor number.build number.private part number”。 产品版本号是保存版本号的 64 位数字,如下所示:
前 16 位是 ProductMajorPart 数字。
接下来的 16 位是 ProductMinorPart 数字。
第三组 16 位是 ProductBuildPart 数字。
最后 16 位是 ProductPrivatePart 数字。