首页 > 代码库 > C# Linq基本使用方法
C# Linq基本使用方法
看了不少开发人员写的代码基本上属于LinQ出来很多年,从来没用过,其实还是非常好用的
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; }
或者
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); } }
再或者
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()); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。