I need to insert unique values once into an array without looping like below statement(I'm using visual basic 6.0)
Dim Marks(0 To 9) As Integer = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9,}
but it has got compile error. how should be changed above statement ??