mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-14 13:07:28 +00:00
docs: Tidying comments
This commit is contained in:
parent
f4a88f257c
commit
2bd018b7f1
1 changed files with 5 additions and 3 deletions
|
|
@ -12,7 +12,7 @@ namespace ICD.Common.Utils.Extensions
|
||||||
public static class AssemblyExtensions
|
public static class AssemblyExtensions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the path for the given assembly. Returns null if the assembly can not be found on disk.
|
/// Gets the path for the assembly. Returns null if the assembly can not be found on disk.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="extends"></param>
|
/// <param name="extends"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
|
@ -45,10 +45,11 @@ namespace ICD.Common.Utils.Extensions
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the creation date of the given assembly.
|
/// Gets the creation date of the assembly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="extends"></param>
|
/// <param name="extends"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
[PublicAPI]
|
||||||
public static DateTime GetCreationTime(this Assembly extends)
|
public static DateTime GetCreationTime(this Assembly extends)
|
||||||
{
|
{
|
||||||
if (extends == null)
|
if (extends == null)
|
||||||
|
|
@ -59,10 +60,11 @@ namespace ICD.Common.Utils.Extensions
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the informational version for the given assembly.
|
/// Gets the informational version for the assembly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="extends"></param>
|
/// <param name="extends"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
[PublicAPI]
|
||||||
public static string GetInformationalVersion(this Assembly extends)
|
public static string GetInformationalVersion(this Assembly extends)
|
||||||
{
|
{
|
||||||
if (extends == null)
|
if (extends == null)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue