We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a502300 commit 989cf1bCopy full SHA for 989cf1b
PSql.Deploy.Engine/Utilities/StringExtensions.cs
@@ -51,8 +51,9 @@ public static bool IsNullOrEmpty([NotNullWhen(false)] this string? s)
51
/// <paramref name="s"/>
52
/// otherwise.
53
/// </returns>
54
- /// This method performs a case-sensitive ordinal comparison.
55
/// <remarks>
+ /// This method performs a case-sensitive ordinal comparison.
56
+ /// </remarks>
57
public static string? NullIf(this string? s, string? nullish)
58
=> s == nullish ? null : s;
59
0 commit comments