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
Sum Using LINQ In C#.net
Sum using LINQ in C#.net
int[] val1= { 1, 3, 5, 7 };
int res= val1.Sum();





