VersionInfoTitle Property

Gets the application's full title.

Definition

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

Return Value

String
A String containing the application's title.

Remarks

If there is no title configured for the application, the method will return the application's short name.

Example

C#
var versionInfo = new VersionInfo();
var appTitle = versionInfo.Title;

// Returns "Inner Drive Extensible Architecture - Core"

See Also