8 lines
200 B
C#
8 lines
200 B
C#
namespace SharepointToolbox.Web.Core.Helpers;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static string? TrimOrNull(this string? s)
|
|
=> string.IsNullOrWhiteSpace(s) ? null : s.Trim();
|
|
}
|