14 lines
296 B
C#
Raw Normal View History

2025-02-13 05:46:56 +03:00
namespace NorthBridgeContracts.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 _);
}
}