FileVersionInfo.FileBuildPart Propriedade
Definição
Obtém o número de build do arquivo.Gets the build number of the file.
public:
property int FileBuildPart { int get(); };
public int FileBuildPart { get; }
member this.FileBuildPart : int
Public ReadOnly Property FileBuildPart As Integer
Valor da propriedade
Um valor que representa o número de build do arquivo ou null se o arquivo não continha informações de versão.A value representing the build number of the file 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 FileBuildPart em uma caixa de texto.Then it prints the FileBuildPart in a text box. Esse código pressupõe que textBox1 tenha sido instanciado.This code assumes textBox1 has been instantiated.
private:
void GetFileBuildPart()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo(Environment::SystemDirectory + "\\Notepad.exe");
// Print the file build number.
textBox1->Text = String::Format( "File build number: {0}", myFileVersionInfo->FileBuildPart );
}
private void GetFileBuildPart()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the file build number.
textBox1.Text = "File build number: " + myFileVersionInfo.FileBuildPart;
}
Private Sub GetFileBuildPart()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the file build number.
textBox1.Text = "File build number: " & myFileVersionInfo.FileBuildPart
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 de arquivo é um número de 64 bits que contém o número de versão de um arquivo da seguinte maneira:A file version number is a 64-bit number that holds the version number for a file as follows:
Os primeiros 16 bits são o FileMajorPart número.The first 16 bits are the FileMajorPart number.
Os próximos 16 bits são o FileMinorPart número.The next 16 bits are the FileMinorPart number.
O terceiro conjunto de 16 bits é o FileBuildPart número.The third set of 16 bits are the FileBuildPart number.
Os últimos 16 bits são o FilePrivatePart número.The last 16 bits are the FilePrivatePart number.
Essa propriedade Obtém o terceiro conjunto de 16 bits.This property gets the third set of 16 bits.