DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
LINQ To Sum A Column In Datatable
// LINQ to sum a column in datatable
var sum = datatable.AsEnumerable().Sum(x => x.Field<double>(ColumnName))





