码迷,mamicode.com
首页 > 其他好文 > 详细

C# Linq基本使用方法

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

标签:style   c   class   blog   code   java   

看了不少开发人员写的代码基本上属于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基本使用方法

标签:style   c   class   blog   code   java   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!