I have a function that returns this object:
var result = AjaxUserToPlacePaging();
//this is the object
object[] objcs = new object[1];
objcs[0] = new
{
countHereNow = countHereNow.ToString(),
countWillBeHere = countWillBeHere.ToString(),
countWasHere = countWasHere.ToString()
};
How can I extract the information from the object?
for example
int count = result[0].countHereNow;
the resun i nned the function to be object is because i using jquery and with the jquery it takes the object and converting it into json