How can explicitly convert type 'String[]' to 'string'
Loading
How can explicitly convert type 'String[]' to 'string'
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.
Pradeep ChandrakerPosted Jun 20, 2011, 9:16 PM
Or you can go for the option suggest by @Vulpes where you can add any separator between array element.
Sandeep ShekhawatPosted Jun 20, 2011, 6:56 AM
string arr1 = (string)name[0];
Response.Write(arr1);
OR
VulpesPosted Jun 20, 2011, 6:52 AM