14
1
Option Strict On
2
Imports System
3
Imports System.Linq
4
Public Module Module1
5
Public Sub Main()
6
'Create a collection of values
7
Dim values() As Integer = {5, 32, 19, 4, 0}
8
9
'Print the sorted collection
10
For Each value As Integer In (From i As Integer In values Order By i Descending)
11
Console.WriteLine(value)
12
Next
13
End Sub
14
End Module
Cached Result
You have an A.
>