Skip to content

Commit

Permalink
Improve docs for StringValues.IsNullOrEmpty for empty strings (#49629)
Browse files Browse the repository at this point in the history
Fix #49626

Co-authored-by: Guanbo Wang <[email protected]>
  • Loading branch information
scharnyw and Guanbo Wang committed Mar 15, 2021
1 parent 2ee54f7 commit 63a5d5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ IEnumerator IEnumerable.GetEnumerator()
/// Indicates whether the specified <see cref="StringValues"/> contains no string values.
/// </summary>
/// <param name="value">The <see cref="StringValues"/> to test.</param>
/// <returns>true if <paramref name="value">value</paramref> contains a single null string or empty array; otherwise, false.</returns>
/// <returns>true if <paramref name="value">value</paramref> contains a single null or empty string or an empty array; otherwise, false.</returns>
public static bool IsNullOrEmpty(StringValues value)
{
object data = value._values;
Expand Down

0 comments on commit 63a5d5b

Please sign in to comment.