BotSharp/src/Infrastructure/BotSharp.Abstraction/Utilities/GuidExtensitions.cs

8 lines
216 B
C#
Raw Normal View History

2023-09-07 22:04:34 +00:00
namespace BotSharp.Abstraction.Utilities;
public static class GuidExtensitions
{
public static Guid IfNullOrEmptyAsDefault(this string str)
=> string.IsNullOrEmpty(str) ? Guid.Empty : Guid.Parse(str);
}