C#按类型查询集合/按类型转换元素
示例
interface IFoo { }
class Foo : IFoo { }
class Bar : IFoo { }var item0 = new Foo();
var item1 = new Foo();
var item2 = new Bar();
var item3 = new Bar();
var collection = new IFoo[] { item0, item1, item2, item3 };使用OfType
var foos = collection.OfType<Foo>(); // result: IEnumerable<Foo> with item0 and item1 var bars = collection.OfType<Bar>(); // result: IEnumerable<Bar> item item2 and item3 var foosAndBars = collection.OfType<IFoo>(); // result: IEnumerable<IFoo> with all four items
使用Where
var foos = collection.Where(item => item is Foo); // result: IEnumerable<IFoo> with item0 and item1 var bars = collection.Where(item => item is Bar); // result: IEnumerable<IFoo> with item2 and item3
使用Cast
var bars = collection.Cast<Bar>(); //在第一个项目上抛出InvalidCastException var foos = collection.Cast<Foo>(); //在第三个项目上抛出InvalidCastException var foosAndBars = collection.Cast<IFoo>(); //好
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短