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
Min Using LINQ Vb.net
// description of your code here
Public Sub Linq81()
Dim numbersList() = {5, 4, 1}
Console.WriteLine("Minimum" & numbersList.Min() & ".")
End Sub





