FileVersionInfo.SpecialBuild プロパティ
アセンブリ: System (system.dll 内)
構文
解説
使用例GetVersionInfo を呼び出して、メモ帳の FileVersionInfo を取得する例を次に示します。次に、特殊ビルド情報をテキスト ボックスに出力します。このコードは、textBox1 がインスタンス化されていることを前提にしています。
Private Sub GetSpecialBuild() ' Get the file version for the notepad. Dim myFileVersionInfo As FileVersionInfo = _ FileVersionInfo.GetVersionInfo("%systemroot%\Notepad.exe") ' Print the special build information. textBox1.Text = "Special build information: " & myFileVersionInfo.SpecialBuild End Sub 'GetSpecialBuild
private void GetSpecialBuild() { // Get the file version for the notepad. FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe"); // Print the special build information. textBox1.Text = "Special build information: " + myFileVersionInfo.SpecialBuild; }
private: void GetSpecialBuild() { // Get the file version for the notepad. FileVersionInfo^ myFileVersionInfo = FileVersionInfo::GetVersionInfo( "%systemroot%\\Notepad.exe" ); // Print the special build information. textBox1->Text = String::Concat( "Special build information: ", myFileVersionInfo->SpecialBuild ); }
private void GetSpecialBuild() { // Get the file version for the notepad. FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe"); // Print the special build information. textBox1.set_Text("Special build information: " + myFileVersionInfo.get_SpecialBuild()); } //GetSpecialBuild
private function GetSpecialBuild() { //Get the file version for the notepad. var myFileVersionInfo : FileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe"); //Print the special build information. textBox1.Text = "Special build information: " + myFileVersionInfo.SpecialBuild; }
プラットフォームWindows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
参照Weblioに収録されているすべての辞書からFileVersionInfo.SpecialBuild プロパティを検索する場合は、下記のリンクをクリックしてください。
全ての辞書からFileVersionInfo.SpecialBuild プロパティ
を検索
- FileVersionInfo.SpecialBuild プロパティのページへのリンク