C#获取类中的属性名

需要获取这个类中的属性名

public class 唇膏 : 类目父
    {
        public List 蜂蜡 { get; set; }
        public List 基础油 { get; set; }
        public List 可可脂 { get; set; }
        public List 香精 { get; set; }
        public List 精油 { get; set; }
        public List 色粉 { get; set; }
        public List 色浆 { get; set; }
        public List 其他固体添加物 { get; set; }
        public List 工艺流程 { get; set; }
    }

List cg_params= new List();
            唇膏 cg = new 唇膏();
            Type type = cg.GetType();
            PropertyInfo[] propertyInfos = type.GetProperties();
            foreach (PropertyInfo propertyInfo in propertyInfos)
            {
                cg_params.Add(propertyInfo.Name);
            }    

你可能感兴趣的:(c#,c#)