This commit is contained in:
in0finite 2022-01-24 22:28:38 +01:00
parent 46db58b5f0
commit 3e9bda3547

View file

@ -188,8 +188,7 @@ namespace SanAndreasUnity.Utilities
public static bool IsNullOrWhiteSpace(this string value)
{
if (value == null) return true;
return string.IsNullOrEmpty(value.Trim());
return string.IsNullOrWhiteSpace(value);
}
public static void Clear(this StringBuilder value)