mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-14 16:45:42 +00:00
Allow null alternative
This commit is contained in:
parent
d4e3c8ab50
commit
108390a415
@ -19,7 +19,7 @@ public static class StringExtensions
|
|||||||
[return: NotNullIfNotNull("value")]
|
[return: NotNullIfNotNull("value")]
|
||||||
public static string? AsNullIfEmpty(this string? value)
|
public static string? AsNullIfEmpty(this string? value)
|
||||||
{
|
{
|
||||||
return string.IsNullOrEmpty(value) ? null : value;
|
return value.WithEmptyAlternative(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -34,7 +34,7 @@ public static class StringExtensions
|
|||||||
[return: NotNullIfNotNull("value")]
|
[return: NotNullIfNotNull("value")]
|
||||||
public static string? AsNullIfWhiteSpace(this string? value)
|
public static string? AsNullIfWhiteSpace(this string? value)
|
||||||
{
|
{
|
||||||
return string.IsNullOrWhiteSpace(value) ? null : value;
|
return value.WithWhiteSpaceAlternative(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -492,14 +492,9 @@ public static class StringExtensions
|
|||||||
/// <paramref name="alternative" /> if <paramref name="value" /> is <see langword="null" /> or empty; otherwise,
|
/// <paramref name="alternative" /> if <paramref name="value" /> is <see langword="null" /> or empty; otherwise,
|
||||||
/// <paramref name="value" />.
|
/// <paramref name="value" />.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
/// <exception cref="ArgumentNullException"><paramref name="alternative" /> is <see langword="null" />.</exception>
|
[return: NotNullIfNotNull("alternative")]
|
||||||
public static string WithEmptyAlternative(this string? value, string alternative)
|
public static string? WithEmptyAlternative(this string? value, string? alternative)
|
||||||
{
|
{
|
||||||
if (alternative is null)
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(alternative));
|
|
||||||
}
|
|
||||||
|
|
||||||
return string.IsNullOrEmpty(value) ? alternative : value;
|
return string.IsNullOrEmpty(value) ? alternative : value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -513,14 +508,9 @@ public static class StringExtensions
|
|||||||
/// <paramref name="alternative" /> if <paramref name="value" /> is <see langword="null" />, empty, or consists of only
|
/// <paramref name="alternative" /> if <paramref name="value" /> is <see langword="null" />, empty, or consists of only
|
||||||
/// whitespace; otherwise, <paramref name="value" />.
|
/// whitespace; otherwise, <paramref name="value" />.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
/// <exception cref="ArgumentNullException"><paramref name="alternative" /> is <see langword="null" />.</exception>
|
[return: NotNullIfNotNull("alternative")]
|
||||||
public static string WithWhiteSpaceAlternative(this string? value, string alternative)
|
public static string? WithWhiteSpaceAlternative(this string? value, string? alternative)
|
||||||
{
|
{
|
||||||
if (alternative is null)
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(alternative));
|
|
||||||
}
|
|
||||||
|
|
||||||
return string.IsNullOrWhiteSpace(value) ? alternative : value;
|
return string.IsNullOrWhiteSpace(value) ? alternative : value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user