xceph
New member
- Joined
- Sep 23, 2008
- Messages
- 1
- Programming Experience
- Beginner
Hi, Im new to VB.net and am running into a small problem.
I've created the following structure
and I try to create an instance as follows:
and it crashes horribly!
I get "Object reference not set to an instance of an object.", so I am assuming there is a real problem with creating lists in a structure, and anyone who could offer assistance, or a better approach would make my day.
Cheers!
-Andrew
I've created the following structure
VB.NET:
Public Structure convertedCodes
Dim code As String
Dim field As List(Of String)
End Structure
and I try to create an instance as follows:
VB.NET:
Dim temp As New convertedCodes
temp.code = oldc.code
temp.field.Add(oldc.field)
and it crashes horribly!
I get "Object reference not set to an instance of an object.", so I am assuming there is a real problem with creating lists in a structure, and anyone who could offer assistance, or a better approach would make my day.
Cheers!
-Andrew