K
Krish
The array in the debugger shows that it has
[0]----value "xxxx" type string
I want to get to the string.
When I do
Array.GetValue(i).ToString(); I get the value
However when I do
String str;
str = Array.GetValue(i)
It tells me type object cannot be converted to string
but why convert the value is of type string anyway.
what is going on - any help appreciated.
[0]----value "xxxx" type string
I want to get to the string.
When I do
Array.GetValue(i).ToString(); I get the value
However when I do
String str;
str = Array.GetValue(i)
It tells me type object cannot be converted to string
but why convert the value is of type string anyway.
what is going on - any help appreciated.