Hello,
I need to change a string array to string object. Can somebody please tell me how to do that?
Thank you.
Hello,
I need to change a string array to string object. Can somebody please tell me how to do that?
Thank you.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jan MontanoPosted Oct 23, 2007, 2:04 AM
to convert a string array to an object...
string[] array = new string[4];
array[0] = "a";
array[1] = "b";
array[2] = "c";
array[3] = "d";
object stringObject = array;