Creata pagina "user"

This commit is contained in:
2026-02-06 18:08:40 +01:00
parent 755f78ef9d
commit d8bef12f30
18 changed files with 660 additions and 25 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections;
namespace SteUp.Shared.Core.Helpers;
public static class ObjectExtensions
{
public static bool IsNullOrEmpty(this IEnumerable? obj) =>
obj == null || !obj.GetEnumerator().MoveNext();
public static bool IsNullOrEmpty(this string? obj) =>
string.IsNullOrEmpty(obj);
public static bool EqualsIgnoreCase(this string obj, string other) =>
string.Equals(obj, other, StringComparison.InvariantCultureIgnoreCase);
public static bool ContainsIgnoreCase(this string obj, string other) =>
obj.Contains(other, StringComparison.InvariantCultureIgnoreCase);
}