跪求这个问题的解.
Type AA AA1 As Integer AA2 As IntegerEnd TypeType BB BB1 As AA BB2 As String * 20 BB3 As IntegerEnd TypeFunction S2B(T As BB) As Byte()Dim A() As ByteReDim A(Len(T) - 1)CopyMemory A(0), T, Len(T)S2B = AEnd FunctionFunction B2S(A() As Byte) As BBDim T As BBCopyMemory T, A(0), Len(T)B2S = TEnd Function'这种情况是完全没有问题的.'但是我想在以下那种情况中.Type CC CC1() As Integer CC2() As LongEnd TypeType AA AA1 As Integer AA2 As IntegerEnd TypeType BB BB1 As AA BB2 As String * 20 BB3 As Integer BB4() As AA BB5() As CC BB6(1 to 9) As AA BB7(1 to 20) As CCEnd Type'问题出现了,无法解决'跪求这个问题的解.'用在发送数据和接收数据的Dim Lem1 As BBDim LemB() As ByteLemB = S2B(Lem1)SendDate LemB