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.
インデックス 1 から始まる for ループは、明らかな答えです。これを行うには他にも多くの方法があると確信しています。しかし、最も読みやすい方法は何ですか?
質問はC# 4.0を使用しています。LINQ はオプションです。
どうですか
dataset.DataTables.Skip(1)
ds.Tables.OfType<DataTable>().Skip(1).ToList().ForEach(ACTION);