FileVersionInfo.ProductMajorPart Proprietà

Definizione

Ottiene la parte principale del numero di versione del prodotto cui è associato questo file.

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

Valore della proprietà

Valore che rappresenta la parte principale del numero di versione del prodotto o null se il file non contiene informazioni sulla versione.

Esempio

Nell'esempio seguente viene chiamato GetVersionInfo per ottenere per FileVersionInfo il Blocco note. Stampa quindi l'oggetto ProductMajorPart in una casella di testo. Questo codice presuppone che textBox1 sia stata creata un'istanza.

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

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

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

Commenti

In genere, un numero di versione viene visualizzato come "numero principale.numero minore.numero di build.numero di parte privata". Un numero di versione del prodotto è un numero a 64 bit che contiene il numero di versione come segue:

Questa proprietà ottiene il primo set di 16 bit.

Si applica a

Vedi anche