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.
以下のコードはエラーを発生させます
DataRow[] dr = dt.Select("" + ColumnName + "='" + strLetter + "'" + " order by asc");
エラーは
'order' 演算子の後にオペランドがありません。
並べ替える列名はありません。並べ替える必要がある列名を渡す必要があります
DataRow[] dr = dt.Select("" + ColumnName + "='" + strLetter + "'" + " order by " + ColumnName + " asc");