FileVersionInfo.ProductBuildPart Свойство

Определение

Получает номер сборки продукта, с которым связан файл.

public:
 property int ProductBuildPart { int get(); };
public int ProductBuildPart { get; }
member this.ProductBuildPart : int
Public ReadOnly Property ProductBuildPart As Integer

Значение свойства

Значение, представляющее номер сборки продукта, с которым связан этот файл, или значение null, если файл не содержал сведения о версии.

Примеры

В следующем примере вызывается GetVersionInfo для получения FileVersionInfo для Блокнота. Затем он выводит в ProductBuildPart текстовое поле. В этом коде предполагается textBox1 , что был создан экземпляр .

private:
    void GetProductBuildPart()
    {
        // Get the file version for the notepad.
        FileVersionInfo^ myFileVersionInfo =
            FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );

        // Print the product build part number.
        textBox1->Text = String::Concat( "Product build part number: ", myFileVersionInfo->ProductBuildPart );
    }
private void GetProductBuildPart()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo =
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");

    // Print the product build part number.
    textBox1.Text = "Product build part number: " + myFileVersionInfo.ProductBuildPart;
}
Private Sub GetProductBuildPart()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print the product build part number.
    textBox1.Text = "Product build part number: " & myFileVersionInfo.ProductBuildPart
End Sub

Комментарии

Как правило, номер версии отображается как "основное число.дополнительный номер.номер сборки.частный номер части". Номер версии продукта — это 64-разрядное число, которое содержит номер версии следующим образом:

Это свойство получает третий набор из 16 бит.

Применяется к

См. также раздел