本文整理汇总了C#中System.Collections.Take方法的典型用法代码示例。如果您正苦于以下问题:C# System.Collections.Take方法的具体用法?C# System.Collections.Take怎么用?C# System.Collections.Take使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections
的用法示例。
在下文中一共展示了System.Collections.Take方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Select_SourceIsArrayTakeTake
public void Select_SourceIsArrayTakeTake()
{
var source = new[] { 1, 2, 3, 4 }.Select(i => i * 2).Take(2).Take(1);
Assert.Equal(new[] { 2 }, source);
Assert.Equal(new[] { 2 }, source.Take(10));
}
示例2: Select_SourceIsArray_Take
public void Select_SourceIsArray_Take()
{
var source = new[] { 1, 2, 3, 4 }.Select(i => i * 2);
Assert.Equal(new[] { 2, 4 }, source.Take(2));
Assert.Equal(new[] { 2, 4 }, source.Take(3).Take(2));
Assert.Empty(source.Take(-1));
Assert.Equal(new[] { 2, 4, 6, 8 }, source.Take(4));
Assert.Equal(new[] { 2, 4, 6, 8 }, source.Take(40));
Assert.Equal(new[] { 2 }, source.Take(1));
Assert.Equal(new[] { 4 }, source.Skip(1).Take(1));
Assert.Equal(new[] { 6 }, source.Take(3).Skip(2));
Assert.Equal(new[] { 2 }, source.Take(3).Take(1));
}
示例3: Select_SourceIsArray_Last
public void Select_SourceIsArray_Last()
{
var source = new[] { 1, 2, 3, 4 }.Select(i => i * 2);
Assert.Equal(8, source.Last());
Assert.Equal(8, source.LastOrDefault());
Assert.Equal(6, source.Take(3).Last());
Assert.Equal(6, source.Take(3).LastOrDefault());
var empty = new int[0].Select(i => i * 2);
Assert.Throws<InvalidOperationException>(() => empty.Last());
Assert.Equal(0, empty.LastOrDefault());
Assert.Throws<InvalidOperationException>(() => empty.Skip(1).Last());
Assert.Equal(0, empty.Skip(1).LastOrDefault());
}