VersionInfoGetVersionString(VersionFormats, Assembly, String) Method
Gets a formatted
String containing the specified version information
for a particular
Assembly using a specific newline string.
Namespace: InnerDrive.CoreAssembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.2.9017.0
public string GetVersionString(
VersionFormats versionFormat,
Assembly thisAssembly,
string newLineToken
)
- versionFormat VersionFormats
- A VersionFormats
specifying which portions of the version information to display.
- thisAssembly Assembly
- An Assembly to examine.
- newLineToken String
- A string to use as a newline delineation.
StringA formatted
String containing version information.
var versionInfo = new VersionInfo();
var versionFormat = VersionFormats.MajorMinor | VersionFormats.Copyright;
var newLineToken = "<br />";
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
var version = GetVersionString(versionFormat, assembly, newLineToken);
/*
Returns:
"4.2<br />Copyright ©2022 Inner Drive Technology. All rights
reserved. Portions Copyright ©1986-2022 David Braverman."
.*/