FileVersionInfo.IsPreRelease Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает значение, указывающее, является ли версия файла версией разработчика, или коммерческой версией продукта.
public:
property bool IsPreRelease { bool get(); };
public bool IsPreRelease { get; }
member this.IsPreRelease : bool
Public ReadOnly Property IsPreRelease As Boolean
Значение свойства
Значение true
, если файл является предварительной версией; в противном случае — значение false
.
Примеры
В следующем примере вызывается GetVersionInfo для получения FileVersionInfo для Блокнота. Затем в текстовом поле отображается, является ли эта версия предварительной версией. В этом коде textBox1
предполагается, что был создан экземпляр .
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