G
Guest
hi there,
i have a following method which returns array of object.
public myresult[] getSearch(string searchterm)
{
object[] res = ....some external method call
return ((myresult[]) (res[0]));
}
so my question is... how do i consume the above method? can i do the
following?
myresult[] res = getSearch("hello");
thanks...a
i have a following method which returns array of object.
public myresult[] getSearch(string searchterm)
{
object[] res = ....some external method call
return ((myresult[]) (res[0]));
}
so my question is... how do i consume the above method? can i do the
following?
myresult[] res = getSearch("hello");
thanks...a