Class AssemblyExtensions
- Namespace
- Cuemon.Extensions.Reflection
- Assembly
- Cuemon.Extensions.Reflection.dll
Extension methods for the Assembly class.
public static class AssemblyExtensions
- Inheritance
-
AssemblyExtensions
Methods
GetAssemblyVersion(Assembly)
Returns a VersionResult that represents the version number of the specified assembly
.
public static VersionResult GetAssemblyVersion(this Assembly assembly)
Parameters
Returns
- VersionResult
A VersionResult that represents the version number of the specified
assembly
.
GetFileVersion(Assembly)
Returns a VersionResult that represents the file version number of the specified assembly
.
public static VersionResult GetFileVersion(this Assembly assembly)
Parameters
Returns
- VersionResult
A VersionResult that represents the file version number of the specified
assembly
.
Exceptions
- ArgumentNullException
assembly
is null.
GetProductVersion(Assembly)
Returns a VersionResult that represents the version of the product this assembly
is distributed with.
public static VersionResult GetProductVersion(this Assembly assembly)
Parameters
Returns
- VersionResult
A VersionResult that represents the version of the product this
assembly
is distributed with.
Exceptions
- ArgumentNullException
assembly
is null.
IsDebugBuild(Assembly)
Determines whether the specified assembly
is a debug build.
public static bool IsDebugBuild(this Assembly assembly)
Parameters
assembly
AssemblyThe assembly to parse and determine whether it is a debug build or not.
Returns
- Boolean
true
if the specifiedassembly
is a debug build; otherwise,false
.