Unfortunately, I don't know the VB syntax for this, so I just need to show C # and hope you can solve it:
from DataRow r in dt.Rows
select new
{
r.Item("Foo"),
r.Item("bar")
}
: " ", , , . - :
from DataRow r in dt.Rows
select new
{
r.Count,
r.NumRows
}
, Count NumRows, , , , Item, .
, :
from DataRow r in dt.Rows
select new
{
Foo = r.Item("Foo"),
Bar = r.Item("bar")
}