Click or drag to resize

VersionInfoTitle Property

Gets the application's full title.

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.0.8475.0
Syntax
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