Hi,
I am creating a VB.NET application that uses multiple lines of a text files as an array member. I came up with this code to create the array:
Dim PSArray as string = Split(my.computer.Filesystem.readalltext ("E:\PS.txt") )
Now that I have created the array, I need to know how I could make each line of the text file an array member.
As an example, here is my "text file"
Fish
Cat
Dog
Mouse
I want to be able to make each animal an array member.
Thanks.