mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 21:24:58 +00:00
docs: Tidying comments
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user