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.
LINQ を使用して、整数のリストが「連続」しているかどうかを確認する方法はありますか?つまり、1,2,3,4,5 または 14,15,16,17,18 ですか?
bool isSequential = Enumerable.Range(values.Min(), values.Count()) .SequenceEqual(values);