14 lines
266 B
C#
14 lines
266 B
C#
|
namespace TPSBR
|
|||
|
{
|
|||
|
using System.Runtime.CompilerServices;
|
|||
|
|
|||
|
public static class StringExtensions
|
|||
|
{
|
|||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|||
|
public static bool HasValue(this string value)
|
|||
|
{
|
|||
|
return string.IsNullOrEmpty(value) == false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|