首页 > 其他 > 详细

C# Linq基本使用方法

时间:2014-05-26 11:58:42      阅读:306      评论:0      收藏:0      [点我收藏+]

看了不少开发人员写的代码基本上属于LinQ出来很多年,从来没用过,其实还是非常好用的

 

bubuko.com,布布扣
    public void  Foo(){
        Dictionary<int, string> frenchNumbers;
        frenchNumbers = new Dictionary<int, string>();
        frenchNumbers.Add(0, "zero");
        frenchNumbers.Add(1, "one");
        frenchNumbers.Add(2, "two");
        frenchNumbers.Add(3, "three");
        frenchNumbers.Add(4, "four");

        var evenFrenchNumbers =
          from entry in frenchNumbers
          where (entry.Key % 2) == 0
          select entry.Value;
    }
bubuko.com,布布扣

或者

bubuko.com,布布扣
       
enum MyEnum : int
        {
            a,
            b,
            c,
        }

public void foo(){
            var v = Enum.GetNames(typeof(MyEnum)).Select((key, value) =>
            new { key, value }).ToDictionary(x => x.key , x => x.value);
            foreach (var item in v)
            {
                Console.WriteLine(item.Key + "  "+item.Value);
            }
}
bubuko.com,布布扣

再或者

bubuko.com,布布扣
        public static Dictionary<int, string> GetEnumDictionary<T>()
        {
            if (!typeof(T).IsEnum)
                throw new ArgumentException("T is not an Enum type");
            if (Enum.GetUnderlyingType(typeof(T)) != typeof(int))
                throw new ArgumentException("The underlying type of the enum T is not Int32");
            return Enum.GetValues(typeof(T))
                .Cast<T>()
                .ToDictionary(t => (int)(object)t, t => t.ToString());
        }
bubuko.com,布布扣

 

C# Linq基本使用方法,布布扣,bubuko.com

C# Linq基本使用方法

原文:http://www.cnblogs.com/aisiyes/p/3746916.html

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