準備
(なし)
デザイン
1. フォーム (Form1) にボタン (button1) を配置します。
2. フォーム (Form1) にリストボックス (listBox1) を配置します。
サンプルコード (C#)
// 名前空間の追加 // (なし) // コード private void button1_Click(object sender, EventArgs e) { listBox1.Items.Add(Application.ProductName); }
解説
アプリケーションの製品名を出力します。設定は、プロジェクトファイル内の AssemblyInfo.cs で行います。このファイルの中の AssemblyProduct を設定します。AssemblyProduct は呼び出し専用で設定はできません。
結果
動作確認環境
Visual Studio 2015 Professional (C# 6.0)