c# how to get the result string from object
See the question and my original answer on StackOverflowYou have to cast the object as an array, like this:
string GetParamStringFromArrayObject(object obj)
{
Array array = obj as Array;
if (array != null)
{
int demesion = array.Rank;
// etc.
}
}