feat: Add TryParse overload method to StringUtils, which tries to parse a GUID from a string

This commit is contained in:
Austin Noska
2021-07-28 14:23:23 -04:00
parent 375e3154c6
commit af3d335079
2 changed files with 23 additions and 0 deletions

View File

@@ -355,6 +355,27 @@ namespace ICD.Common.Utils
return TryConvert(Convert.ToBoolean, value, out result);
}
/// <summary>
/// Attempts to parse the string as a guid.
/// </summary>
/// <param name="value"></param>
/// <param name="result"></param>
/// <returns></returns>
[PublicAPI]
public static bool TryParse([NotNull] string value, out Guid result)
{
try
{
result = new Guid(value);
return true;
}
catch (Exception)
{
result = Guid.Empty;
return false;
}
}
/// <summary>
/// Attempts to parse the string via the given conversion function.
/// </summary>