H
HardySpicer
I have a function which returns an array of strings. I want to display
say the zeroth element and I do
mystring = myarrayofstrings(0)
which is it happy with. However, when i compile it complains twith
this error
System.NullReferenceException was unhandled
Message="Object reference not set to an instance of an object."
Then it says to use the new keyword to create an object instance!
What does that all mean?
Hardy
say the zeroth element and I do
mystring = myarrayofstrings(0)
which is it happy with. However, when i compile it complains twith
this error
System.NullReferenceException was unhandled
Message="Object reference not set to an instance of an object."
Then it says to use the new keyword to create an object instance!
What does that all mean?
Hardy