如何統(tǒng)計這個DataSources類的屬性?答案應(yīng)該是“3”public class DataSources { public int Id { get; set; } public string Name { get; set; } public string Phone { get; set; } }
1 回答

海綿寶寶撒
TA貢獻(xiàn)1809條經(jīng)驗 獲得超8個贊
您可以使用在System.Reflection命名空間中找到的類來研究類型元數(shù)據(jù)。在您的情況下, TypeInfo -class 是一個在獲取有關(guān)屬性的信息時幫助您的類。
using System.Linq; typeof(DataSources).GetProperties().Count();
或者
typeof(DataSources).GetProperties().Length;
- 1 回答
- 0 關(guān)注
- 87 瀏覽
添加回答
舉報
0/150
提交
取消