FileVersionInfo.ProductPrivatePart Propriedade
Definição
Obtém o número da parte privada do produto com o qual esse arquivo está associado.Gets the private part number of the product this file is associated with.
public:
property int ProductPrivatePart { int get(); };
public int ProductPrivatePart { get; }
member this.ProductPrivatePart : int
Public ReadOnly Property ProductPrivatePart As Integer
Valor da propriedade
Um valor que representa o número da parte particular do produto ao qual este arquivo está associado ou null se o arquivo não continha informações de versão.A value representing the private part number of the product this file is associated with or null if the file did not contain version information.
Exemplos
O exemplo a seguir chama GetVersionInfo para obter o FileVersionInfo bloco de notas.The following example calls GetVersionInfo to get the FileVersionInfo for the Notepad. Em seguida, ele imprime o ProductPrivatePart em uma caixa de texto.Then it prints the ProductPrivatePart in a text box. Esse código pressupõe que textBox1 tenha sido instanciado.This code assumes textBox1 has been instantiated.
private:
void GetProductPrivatePart()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print the product private part number.
textBox1->Text = String::Concat( "Product private part number: ", myFileVersionInfo->ProductPrivatePart );
}
private void GetProductPrivatePart()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the product private part number.
textBox1.Text = "Product private part number: " + myFileVersionInfo.ProductPrivatePart;
}
Private Sub GetProductPrivatePart()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the product private part number.
textBox1.Text = "Product private part number: " & myFileVersionInfo.ProductPrivatePart
End Sub
Comentários
Normalmente, um número de versão é exibido como "número principal. número secundário. número da compilação. número da parte particular".Typically, a version number is displayed as "major number.minor number.build number.private part number". Um número de versão do produto é um número de 64 bits que contém o número de versão da seguinte maneira:A product version number is a 64-bit number that holds the version number as follows:
Os primeiros 16 bits são o ProductMajorPart número.The first 16 bits are the ProductMajorPart number.
Os próximos 16 bits são o ProductMinorPart número.The next 16 bits are the ProductMinorPart number.
O terceiro conjunto de 16 bits é o ProductBuildPart número.The third set of 16 bits are the ProductBuildPart number.
Os últimos 16 bits são o ProductPrivatePart número.The last 16 bits are the ProductPrivatePart number.
Essa propriedade Obtém o último conjunto de 16 bits.This property gets the last set of 16 bits.