VersionInfoCopyright Property

Returns the copyright information about the current application.

Definition

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.2.9017.0
C#
public string Copyright { get; }

Return Value

String
A String containing copyright information.

Example

C#
var versionInfo = new VersionInfo();
var copyright = versionInfo.Copyright;

/*

Returns:

Copyright ©2022 Inner Drive Technology. All rights reserved. 
Portions Copyright ©1986-2022 David Braverman.

*/

See Also