FileVersionInfo.Comments Proprietà

Definizione

Ottiene i commenti associati al 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

Valore della proprietà

Commenti associati al file o null se il file non contiene informazioni sulla versione.

Esempio

Nell'esempio seguente viene chiamato GetVersionInfo per ottenere il FileVersionInfo blocco note. Quindi stampa i commenti in una casella di testo. Questo codice presuppone che textBox1 sia stata creata un'istanza.

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

Commenti

Questa proprietà contiene informazioni aggiuntive che possono essere visualizzate a scopo di diagnostica.

Si applica a