mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 05:02:50 +08:00
11 lines
208 B
C#
11 lines
208 B
C#
namespace Docs
|
|
{
|
|
public static class StringExtensions
|
|
{
|
|
public static bool IsNotEmpty(this string source)
|
|
{
|
|
return !string.IsNullOrWhiteSpace(source);
|
|
}
|
|
}
|
|
}
|