I found a small issue in one of my app's.
I'm reading data from a database to a array(so to say)
npc_text.text1[0] = reader["text0_1"].ToString();
Now I'm having the problem that "text0_1" can be a NULL value. The to string complains about it. If I use a variable it works fine. Is there some other method that I can use?
I know I write a more complex query to change the Null value to
string = "";
But don't like doing that