FileVersionInfo.Comments Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene los comentarios asociados al archivo.
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
Valor de propiedad
Comentarios asociados al archivo o null
si el archivo no contiene información de versión.
Ejemplos
En el ejemplo siguiente se llama GetVersionInfo a para obtener para FileVersionInfo el Bloc de notas. A continuación, imprime los comentarios en un cuadro de texto. Se supone que textBox1
se ha creado una instancia de este código.
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
Comentarios
Esta propiedad contiene información adicional que se puede mostrar con fines de diagnóstico.