How to create and print Array of int objects in VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Dim intArray As Array = Array.CreateInstance(GetType(Int32), 5)

        intArray.SetValue(12, 0)
        intArray.SetValue(11, 1)
        intArray.SetValue(27, 2)
        intArray.SetValue(73, 3)
        intArray.SetValue(32, 4)

        Array.Sort(intArray)

        PrintArray(intArray)

    End Sub

    Public Sub PrintArray(arr As Array)
        Dim cols As Integer = arr.GetLength(arr.Rank - 1)
        For Each o As Object In arr
            Console.Write("  {0}", o)
        Next o
        Console.WriteLine()
    End Sub

End Module

' run:
' 
'   11  12  27  32  73

 



answered Apr 9, 2016 by avibootz

Related questions

1 answer 196 views
1 answer 177 views
177 views asked Apr 12, 2016 by avibootz
1 answer 242 views
3 answers 144 views
1 answer 192 views
192 views asked Aug 5, 2022 by avibootz
...