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
// description of your code here
Public Sub SumNumbers()
Dim numbersList() As Integer = {5, 4, 1}
Console.WriteLine("Sum" & numbersList.Sum())
End Sub





