Files
tnb.server/common/Tnb.Common/Utils/ObjectPropertyChecker.cs
yang.lee 71c4dbd254 1、新增预任务生成帮助类
2、齐套配送接口参数调整
2023-11-23 14:13:03 +08:00

20 lines
439 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.Common.Utils
{
public static class ObjectPropertyChecker
{
public static bool HasProperty<T>(T obj, string propertyName)
{
Type type = typeof(T);
var propertyInfo = type.GetProperty(propertyName);
return propertyInfo != null;
}
}
}