Click or drag to resize

VersionInfoGetVersionString(VersionFormats, String) Method

Gets a formatted String containing the specified version information using a specified string at each line break.

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.0.8475.0
Syntax
C#
public string GetVersionString(
	VersionFormats versionFormat,
	string newLineToken
)

Parameters

versionFormat  VersionFormats
A VersionFormats specifying which portions of the version information to display.
newLineToken  String
A string to use as a newline delineation.

Return Value

String
A formatted string containing version information.
Example
C#
var versionInfo = new VersionInfo();
var versionFormat = VersionFormats.MajorMinor | VersionFormats.Copyright;
var newLineToken = "<br />";

var version = GetVersionString(versionFormat, newLineToken);

/*

Returns:

"2.0<br />Copyright ©2014 Inner Drive Technology. 
All rights reserved. Portions Copyright ©1986-2010 David Braverman."*/

See Also