7 lines
173 B
C#
7 lines
173 B
C#
namespace Server
|
|
{
|
|
public static class Extensions
|
|
{
|
|
public static bool IsNullOrWhiteSpace(this string? value) => string.IsNullOrWhiteSpace(value);
|
|
}
|
|
} |