DeviceManager/DeviceRepair.Utils/JudgeExtend.cs

17 lines
327 B
C#
Raw Permalink Normal View History

2024-07-08 02:44:57 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceRepair.Utils
{
public static class JudgeExtend
{
public static bool IsNull(this string value)
{
return string.IsNullOrWhiteSpace(value);
}
}
}