1
我有一個類有許多列表作爲屬性。當我使用此代碼獲取PropertiesInfo時,它將返回帶有零元素的數組。PropertiesInfo返回數組與零元素
Type type = import.GetType();
PropertyInfo[] properties = type.GetProperties(BindingFlags.Instance |BindingFlags.Public);
我試過this但我仍然有同樣的問題。
這是我
類public class ImportModel
{
//REFERENSI
//Level Area
public List<LevelArea> lsLvlArea;
//MASTER
//Area
public List<Area> lsArea;
//Region
public List<Customer> lsCustomer;
//Branch
public List<Product> lsProduct;
//Distributor
public List<Employee> lsEmployee;
//Bank
public List<Device> lsDevice;
public ImportModel()
{
//Referensi
lsLvlArea = new List<LevelArea>();
//Master
lsArea = new List<Area>();
lsCustomer = new List<Customer>();
lsDevice = new List<Device>();
lsEmployee = new List<Employee>();
lsProduct = new List<Product>();
}
}
我用Google搜索,並沒有找到一個解決方案。請幫幫我。
你的類似乎沒有屬性 - 只是成員字段。 – Baldrick
謝謝,我沒有看到它。 –