FileVersionInfo.LegalCopyright 属性

获取所有适用于指定文件的版权声明。

**命名空间:**System.Diagnostics
**程序集:**System(在 system.dll 中)

语法

声明
Public ReadOnly Property LegalCopyright As String
用法
Dim instance As FileVersionInfo
Dim value As String

value = instance.LegalCopyright
public string LegalCopyright { get; }
public:
property String^ LegalCopyright {
    String^ get ();
}
/** @property */
public String get_LegalCopyright ()
public function get LegalCopyright () : String

属性值

适用于指定文件的版权声明。

备注

这应包含所有声明、合法符号和版权日期等。

示例

下面的示例调用 GetVersionInfo 来获取“记事本”(Notepad) 的 FileVersionInfo。然后,它在文本框内输出 LegalCopyright。这段代码假定已经实例化 textBox1

Private Sub GetCopyright()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo("%systemroot%\Notepad.exe")
    
    ' Print the copyright notice.
    textBox1.Text = "Copyright notice: " & myFileVersionInfo.LegalCopyright
End Sub 'GetCopyright
private void GetCopyright() {
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");
 
    // Print the copyright notice.
    textBox1.Text = "Copyright notice: " + myFileVersionInfo.LegalCopyright;
 }
    
private:
   void GetCopyright()
   {
      // Get the file version for the notepad.
      FileVersionInfo^ myFileVersionInfo = FileVersionInfo::GetVersionInfo( "%systemroot%\\Notepad.exe" );
      
      // Print the copyright notice.
      textBox1->Text = String::Concat( "Copyright notice: ", myFileVersionInfo->LegalCopyright );
   }
private void GetCopyright()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo = 
        FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");

    // Print the copyright notice.
    textBox1.set_Text("Copyright notice: " 
        + myFileVersionInfo.get_LegalCopyright());
} //GetCopyright
private function GetCopyright() {
    //Get the file version for the notepad.
    var myFileVersionInfo : FileVersionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\Notepad.exe");
 
    //Print the copyright notice.
    textBox1.Text = "Copyright notice: " + myFileVersionInfo.LegalCopyright;
 }
    

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

FileVersionInfo 类
FileVersionInfo 成员
System.Diagnostics 命名空间