LINQを使って、指定個数ランダムで取り出すには
配列からランダムに指定個数選択するには、
- .OrderBy()にGUIDを与えてランダムソートし、
- .Take() で指定個数取得すれば良い
RandomTake.cs
using System;
using System.Collections.Generic;
using System.Linq;
IEnumerable<string> lines = new string[] {"1","2","3","4","5","6","7","8","9","10"};
IEnumerable<string> newLines;
newLines = lines.OrderBy(i => Guid.NewGuid()).Take(3);
foreach(var line in newLines)
{
Console.WriteLine(line);
}
Author And Source
この問題について(LINQを使って、指定個数ランダムで取り出すには), 我々は、より多くの情報をここで見つけました https://qiita.com/rohinomiya/items/2d60bc7b23ceb41fc06a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .