Aracılığıyla paylaş


FileVersionInfo.ProductBuildPart Özellik

Tanım

Bu dosyanın ilişkili olduğu ürünün derleme numarasını alır.

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

Özellik Değeri

Bu dosyanın ilişkili olduğu ürünün derleme numarasını temsil eden veya null dosya sürüm bilgisi içermiyorsa bir değer.

Örnekler

Aşağıdaki örnek, Not Defteri için öğesini FileVersionInfo almak için çağrısı GetVersionInfo yapar. Ardından metin kutusuna ProductBuildPart yazdırır. Bu kodun textBox1 örneği alındığını varsayar.

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

Açıklamalar

Genellikle, bir sürüm numarası "ana sayı.ikincil sayı.derleme numarası.özel parça numarası" olarak görüntülenir. Ürün sürüm numarası, sürüm numarasını aşağıdaki gibi tutan 64 bitlik bir sayıdır:

Bu özellik 16 bitlik üçüncü kümeyi alır.

Şunlara uygulanır

Ayrıca bkz.