Blame view

HHECS.DAQShared/Common/Utils/ExtendHelper.cs 423 Bytes
唐召明 authored
1
using HHECS.DAQShared.Common.Enums;
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
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);
        }

    }
}