Update On Tue Sep 17 20:34:17 CEST 2024

This commit is contained in:
github-action[bot]
2024-09-17 20:34:17 +02:00
parent d3c6d73392
commit 8e1d5c1fdd
1241 changed files with 1492 additions and 176262 deletions
@@ -14,6 +14,11 @@ namespace ServiceLib.Common
return string.IsNullOrWhiteSpace(value);
}
public static bool IsNotEmpty([NotNullWhen(false)] this string? value)
{
return !string.IsNullOrEmpty(value);
}
public static bool BeginWithAny(this string s, IEnumerable<char> chars)
{
if (s.IsNullOrEmpty()) return false;