15 lines
300 B
C#
Raw Permalink Normal View History

2025-02-13 12:42:06 +04:00
namespace TwoFromTheCaseContracts.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 _);
}
}