I have a byte array
Dim b() as byte = {1,2,3,4,5,6,7,8,9}
I want delete without for next 3., 6., 9. items and so on
Dim Newb() as byte = {1,2,4,5,7,8}
How can i do?
I have a byte array
Dim b() as byte = {1,2,3,4,5,6,7,8,9}
I want delete without for next 3., 6., 9. items and so on
Dim Newb() as byte = {1,2,4,5,7,8}
How can i do?
Built-in .NET arrays do not allow deletions. You have several options open to you:
List(Of Byte()) collection.ToArray to make a new array from the results.