首页 > 其他 > 详细

LinQ 定义扩展方法3.1

时间:2014-07-14 00:17:16      阅读:393      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.Diagnostics;

namespace ExtensionMethodDump
{
    class Program
    {
        static void Main(string[] args)
        {
            var song = new { Artist = "Jussi Bjorling", Song = "Aida" };
            song.Dump();
            Console.ReadLine();
        }
    }

    public static class Dumper
    {
        public static void Dump(this Object o)
        {
            PropertyInfo[] properties = o.GetType().GetProperties();
            foreach (PropertyInfo p in properties)
            {
                try
                {
                    Console.WriteLine(string.Format("Name: {0}, Value: {1}", p.Name,
                      p.GetValue(o, null)));
                }
                catch
                {
                    Console.WriteLine(string.Format("Name: {0}, Value: {1}", p.Name,
                    "unk."));
                }
            }
        }
    }
}

 

LinQ 定义扩展方法3.1,布布扣,bubuko.com

LinQ 定义扩展方法3.1

原文:http://www.cnblogs.com/swtool/p/3840297.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!