14 lines
287 B
C#
Raw Permalink Normal View History

2025-02-27 17:13:36 +04:00
namespace IcecreamVan.Extensions;
public static class StringExtensions
{
public static bool IsEmpty(this string str)
{
return string.IsNullOrWhiteSpace(str);
}
public static bool IsGuid(this string str)
{
return Guid.TryParse(str, out _);
}
}