J
Jerry West
I have an ArrayList of DirectoryInfo structures. As I'm certain you know,
each DirectoryInfo structure has a property called FullName. I'm trying to
get at the fullname property for the first element in the array so I can
assign it to a var but I can't seem to figure out how to do it.
Image.FromFile(alDirInfo(0).Item)
Nothing I do reveals this property in the IDE to select. So do I have to use
the CopyTo method of the ArrayList to get at the FullName property? It seems
like I should be able to access each DirectoryInfo structure from right
inside the array. Is this not possible?
Thanks!
JW
each DirectoryInfo structure has a property called FullName. I'm trying to
get at the fullname property for the first element in the array so I can
assign it to a var but I can't seem to figure out how to do it.
Image.FromFile(alDirInfo(0).Item)
Nothing I do reveals this property in the IDE to select. So do I have to use
the CopyTo method of the ArrayList to get at the FullName property? It seems
like I should be able to access each DirectoryInfo structure from right
inside the array. Is this not possible?
Thanks!
JW