C# Linq on DataColumnCollection
var
q
=
from
x
in
dt
.
Columns
.
Cast
<
DataColumn
>
(
)
where
x
.
ColumnName
!=
"Month"
select
x
.
ColumnName
;