唐召明
authored
|
1
|
using HHECS.DAQShared.Common.Enums;
|
李璐瑶
authored
|
2
3
4
5
6
7
8
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
|
唐召明
authored
|
9
|
namespace HHECS.DAQShared.Common.Utils
|
李璐瑶
authored
|
10
11
12
13
14
15
16
17
18
19
20
|
{
public static class ExtendHelper
{
public static bool IsNullOrWhiteSpace(this string str)
{
return string.IsNullOrWhiteSpace(str);
}
}
}
|