This commit is contained in:
iPromKnight
2024-03-10 13:48:27 +00:00
parent c8a1ebd8ae
commit 6c03f79933
20 changed files with 252468 additions and 52 deletions

View File

@@ -0,0 +1,7 @@
namespace Producer.Extensions;
public static class StringExtensions
{
public static bool IsNullOrEmpty(this string? value) =>
string.IsNullOrEmpty(value);
}