M
Maersa
hi all,
what does the following mean ?
class A
{
public string @return;
}
also, once an object is casted to class "A" how do i recast it to a "string"
?
object o = invoke(.......);
A a = (A)o;
string s = (string)a; /// doesn't work .
thanks,
what does the following mean ?
class A
{
public string @return;
}
also, once an object is casted to class "A" how do i recast it to a "string"
?
object o = invoke(.......);
A a = (A)o;
string s = (string)a; /// doesn't work .
thanks,