Public Structure TMProduct
<VBFixedString(25)> Public productline As String
<VBFixedString(25)> Public hinban As String
<VBFixedString(25)> Public shortcode As String
<VBFixedString(25)> Public fusible As String
Public nutcount As Integer
<VBFixedArray(11)> Public nuts() As Integer
<VBFixedString(512), VBFixedArray(11)> Public tips() As String
End Structure
in VB6 the length of this structure is "12514"
and I used LenB function.
but LenB is not supported in VB.Net
I've reading on some other forums that they use Marshal.SizeOf
but in my case it doesn't do as LenB