0
中初始化第二個數組
初始化數組的地方發生錯誤。如何使用該數組?如何使用數組?VB]如何在struct
它必須是角色的二維數組...
謝謝....
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi, Pack:=1)> _
Public Structure ST_TEST
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=360)>
Public 2D_CHAR_ARR()() As Char '//Array In Struct can not be fixed row&col
End Structure
''''''''''''''''''''''''''''''''''''''''
Dim stTest As ST_TEST
ReDim stTest.2D_CHAR_ARR(60)(60) ' //throws System.NullReferenceException
儘管基本問題,謝謝你寫的答案。 我很榮幸能夠學習新知識。 非常感謝! 祝您有美好的一天。 –