开发者

Reflection and Generics get value of property

i am trying to implement a generic method which allows to output csv file

public static void WriteToCsv<T>(List<T> list) where T : new()
    {
        const string attachment = "attachment; filename=P开发者_StackOverflow中文版ersonList.csv";
        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.ClearHeaders();
        HttpContext.Current.Response.ClearContent();
        HttpContext.Current.Response.AddHeader("content-disposition", attachment);
        HttpContext.Current.Response.ContentType = "text/csv";
        HttpContext.Current.Response.AddHeader("Pragma", "public");                   

        bool isFirstRow = true;
        foreach (T item in list)
        {                
            //Get public properties
            PropertyInfo[] propertyInfo = item.GetType().GetProperties();

            while (isFirstRow)
            {
                WriteColumnName(propertyInfo);
                isFirstRow = false;
            }

            Type type = typeof (T);

            StringBuilder stringBuilder = new StringBuilder();

            foreach (PropertyInfo info in propertyInfo)
            {
                   //string value ???? I am trying to get the value of the property info for the item object

            }                
            HttpContext.Current.Response.Write(stringBuilder.ToString());
            HttpContext.Current.Response.Write(Environment.NewLine);                
        }
        HttpContext.Current.Response.End();
    }

but I am not able to get the value of the object's property

Any suggestion?

Thanks


Like this:

object value = info.GetValue(item, null);


Here you go..

PropertyInfo[] propertyInfo = item.GetType().GetProperties(); 
var val = propertyInfo.GetValue(item, null);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜