does anyone know how to do the following in vb.net:
Private Type ID3Tag
Tag As String * 3
Title As String * 30
Artist As String * 30
Album As String * 30
Year As String * 4
Comment As String * 28
End Type
i know that you make is a structure:
Private Structure ID3Tag
Public Tag As String
Public Title As String
Public Artist As String
Public Album As String
Public Year As String
Public Comment As String
End Structure
but how do you specify the lenth of the properties? thanks...
Private Type ID3Tag
Tag As String * 3
Title As String * 30
Artist As String * 30
Album As String * 30
Year As String * 4
Comment As String * 28
End Type
i know that you make is a structure:
Private Structure ID3Tag
Public Tag As String
Public Title As String
Public Artist As String
Public Album As String
Public Year As String
Public Comment As String
End Structure
but how do you specify the lenth of the properties? thanks...