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.
データテーブル列から一意のアイテムの配列を作成したいと思います。データビューの作成方法を知っています...
DataView view = new DataView(table); DataTable distinctValues = view.ToTable(true, "Column1", "Column2" ...);
配列に対する同様のアプローチですか?前もって感謝します。
LINQを使用できます
DataTable myDataTable = new DataTable(); //...... string[] uniqueItems = myDataTable.AsEnumerable() .Select(r=> r.Field<string>("MyColumn")) .Distinct() .ToArray();
;