Class Lib
Static class for general assembly methods
Inherited Members
Namespace: MathLib
Assembly: MathLib.dll
Syntax
public static class Lib
Properties
| Edit this page View SourceBuildVersion
Retrieves assebly information.
Declaration
public static string BuildVersion { get; }
Property Value
Type | Description |
---|---|
string | A string representing the version, target .NET framework, and build configuration (e.g. Debug, Release) of the assembly. The format of the returned string is "Version: 'X.Y.Z.W' Build:'FrameworkName' Configuration:'BuildConfiguration'". |
Examples
Console.WriteLine(Lib.BuildVersion);
// Example output:
// "Version: 1.0.0.0 Build:.NET Standard 2.1 Configuration:Release"