ExtendHelper.cs 423 Bytes
using HHECS.DAQShared.Common.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.DAQShared.Common.Utils
{
    public static class ExtendHelper
    {

        public static bool IsNullOrWhiteSpace(this string str)
        {
            return string.IsNullOrWhiteSpace(str);
        }

    }
}