Hello,
I'm declaring a structure (that will include other variable types in the future) as follows:
But, I'm getting the following error:
I tried changing the structure declaration to include ...as New ArrayList, but thats not allowed...
Thanks for any help
I'm declaring a structure (that will include other variable types in the future) as follows:
Code:
Structure SearchResults
Dim FileNames As ArrayList
Dim Paths As ArrayList
End Structure
But, I'm getting the following error:
Code:
An unhandled exception of type 'System.NullReferenceException' occurred in WindowsApplication1.exe
Additional information: Object reference not set to an instance of an object.
I tried changing the structure declaration to include ...as New ArrayList, but thats not allowed...
Thanks for any help