Files
CourseWork_ISEbd21_Universi…/UniversityAllExpelledClient/UniversityAllExpelled_Models/Extensions/StringExtansions.cs
2025-04-12 15:52:43 +04:00

16 lines
306 B
C#

namespace UniversityAllExpelled_Models.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 _);
}
}