I am using the following code to store an array in.
Public Structure StructField
Public FieldName As String
Public FieldStartPos As Integer
Public FieldLength As Integer
End Structure
Public Fields(1) As StructField
I would like to delete a particular row in the array where the FieldName = Pants.
Is it possible to delete a row out of an array? If so how?
Thanks.
Public Structure StructField
Public FieldName As String
Public FieldStartPos As Integer
Public FieldLength As Integer
End Structure
Public Fields(1) As StructField
I would like to delete a particular row in the array where the FieldName = Pants.
Is it possible to delete a row out of an array? If so how?
Thanks.