次の方法で共有


Application.ProductVersion プロパティ

このアプリケーションに関連付けられている製品のバージョンを取得します。

Public Shared ReadOnly Property ProductVersion As String
[C#]
public static string ProductVersion {get;}
[C++]
public: __property static String* get_ProductVersion();
[JScript]
public static function get ProductVersion() : String;

プロパティ値

製品のバージョン。

解説

通常、バージョン番号は "メジャー番号.マイナ番号.ビルド番号.プライベート パート番号" の形式で表示されます。

使用例

[Visual Basic, C#, C++] このプロパティを取得し、プロパティ値をテキスト ボックスに表示する例を次に示します。この例は、 textBox1 が既にフォームに配置されていることを前提としています。

 
Private Sub PrintProductVersion()
   textBox1.Text = "The product version is: " & _
      Application.ProductVersion
End Sub


[C#] 
private void PrintProductVersion() {
    textBox1.Text = "The product version is: " +
       Application.ProductVersion;
 }


[C++] 
private:
   void PrintProductVersion() {
      textBox1->Text = S"The product version is: {0}", Application::ProductVersion;
   }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Application クラス | Application メンバ | System.Windows.Forms 名前空間 | ProductName | CompanyName | AssemblyVersionAttribute