diff --git a/X10D/src/StringExtensions/StringExtensions.cs b/X10D/src/StringExtensions/StringExtensions.cs index d9bcb96..ce192b3 100644 --- a/X10D/src/StringExtensions/StringExtensions.cs +++ b/X10D/src/StringExtensions/StringExtensions.cs @@ -14,7 +14,10 @@ namespace X10D.StringExtensions /// Returns the current string, or if the current string is null or empty. /// /// The value to sanitize. - /// or . + /// + /// if is or equal to + /// , or otherwise. + /// public static string? AsNullIfEmpty(this string value) { return string.IsNullOrEmpty(value) ? null : value; @@ -25,7 +28,10 @@ namespace X10D.StringExtensions /// whitespace. /// /// The value to sanitize. - /// or . + /// + /// if is or equal to + /// or is composed of only whitespace characters, or otherwise. + /// public static string? AsNullIfWhiteSpace(this string value) { return string.IsNullOrWhiteSpace(value) ? null : value;