Initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace SharepointToolbox.Web.Core.Helpers;
|
||||
|
||||
public static class StringExtensions
|
||||
{
|
||||
public static string? TrimOrNull(this string? s)
|
||||
=> string.IsNullOrWhiteSpace(s) ? null : s.Trim();
|
||||
}
|
||||
Reference in New Issue
Block a user