引入minimal api 测试
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-10-14 14:48:18 +08:00
parent c9a6f8b99b
commit fad9428656
6 changed files with 91 additions and 8 deletions
@@ -11,11 +11,12 @@ namespace IRaCIS.Core.Infrastructure.Extention
{
// 扩展 string 类型
public static bool IsNullOrEmpty(this string value)
{
return string.IsNullOrEmpty(value);
}
//// 扩展 string 类型
//public static bool IsNullOrEmpty(this string value)
//{
// return string.IsNullOrEmpty(value);
//}
public static bool IsNotNullOrEmpty(this string value)
{
return !string.IsNullOrEmpty(value);