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