FileVersionInfo.Comments Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan komentar yang terkait dengan file.
public:
property System::String ^ Comments { System::String ^ get(); };
public string? Comments { get; }
public string Comments { get; }
member this.Comments : string
Public ReadOnly Property Comments As String
Nilai Properti
Komentar yang terkait dengan file atau null
jika file tidak berisi informasi versi.
Contoh
Contoh berikut memanggil GetVersionInfo untuk mendapatkan FileVersionInfo untuk Notepad. Kemudian mencetak komentar dalam kotak teks. Kode ini mengasumsikan textBox1
telah dibuat.
void GetComments()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo(Environment::SystemDirectory + "\\Notepad.exe");
// Print the comments in a text box.
textBox1->Text = "Comments: " + myFileVersionInfo->Comments;
}
void GetComments()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the comments in a text box.
textBox1.Text = "Comments: " + myFileVersionInfo.Comments;
}
Sub GetComments()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the comments in a text box.
textBox1.Text = "Comments: " & myFileVersionInfo.Comments
End Sub
Keterangan
Properti ini berisi informasi tambahan yang dapat ditampilkan untuk tujuan diagnostik.