Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
値 A から値 B までの一連の整数を取得したいと考えています。
たとえば、A=3とB=9. 3,4,5,6,7,8,9ここで、1 行のコードでループのないシーケンスを作成したいと考えています。で遊んでみましたEnumerable.Rangeが、うまくいく解決策が見つかりません。
A=3
B=9
3,4,5,6,7,8,9
Enumerable.Range
誰にもアイデアはありますか?
var sequence = Enumerable.Range(min, max - min + 1);
?
ただし、情報については、個人的にはループを使用したいと思っています。
for(int i = min; i <= max ; i++) { // note inclusive of both min and max // good old-fashioned honest loops; they still work! who knew! }