10 lines
214 B
C#
10 lines
214 B
C#
|
namespace JXCMS.Core.Extensions
|
|||
|
{
|
|||
|
public static class StringExtension
|
|||
|
{
|
|||
|
public static bool IsNullOrEmpty(this string str)
|
|||
|
{
|
|||
|
return string.IsNullOrEmpty(str);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|