FileVersionInfo.IsPreRelease Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um valor que especifica se o arquivo é uma versão de desenvolvimento, em vez de um produto lançado comercialmente.
public:
property bool IsPreRelease { bool get(); };
public bool IsPreRelease { get; }
member this.IsPreRelease : bool
Public ReadOnly Property IsPreRelease As Boolean
Valor da propriedade
true
se o arquivo for pré-lançamento; caso contrário, false
.
Exemplos
O exemplo a seguir chama GetVersionInfo para obter o FileVersionInfo para o Bloco de Notas. Em seguida, ele exibe se essa versão é uma versão de pré-lançamento em uma caixa de texto. Esse código pressupõe textBox1
que foi instanciado.
private:
void GetIsPreRelease()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );
// Print whether the file is a prerelease version.
textBox1->Text = String::Concat( "File is prerelease version ", myFileVersionInfo->IsPreRelease );
}
private void GetIsPreRelease()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print whether the file is a prerelease version.
textBox1.Text = "File is prerelease version " + myFileVersionInfo.IsPreRelease;
}
Private Sub GetIsPreRelease()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print whether the file is a prerelease version.
textBox1.Text = "File is prerelease version " & myFileVersionInfo.IsPreRelease
End Sub