. . . . . . . . method is used to sort an array in visual basic.

Array.arrange()
Array.arrayArrange()
Array.Sort()
Array.sortAscending()

The correct answer is C. Array.Sort().

The Array.Sort() method sorts the elements of an array in ascending order. The method takes two parameters: the first is the array to be sorted, and the second is the type of the elements in the array. The method returns an array containing the sorted elements.

The Array.arrange() method does not exist in Visual Basic.

The Array.arrayArrange() method is a deprecated method that was used to sort an array in Visual Basic 6. It is not supported in Visual Basic .NET.

The Array.sortAscending() method is a shortcut for the Array.Sort() method. It sorts the elements of an array in ascending order without taking any parameters.

Here is an example of how to use the Array.Sort() method:

Dim myArray As Integer() = {10, 5, 2, 1, 3, 4, 6, 7, 8, 9}
Array.Sort(myArray)
For Each i As Integer In myArray
Console.WriteLine(i)
Next

This code will print the following output:

1
2
3
4
5
6
7
8
9
10