IDictionary<string, object> test2 = new Dictionary<string, object>
{
{ "username", ParseUser.CurrentUser.Username}
};
var result = await ParseCloud.CallFunctionAsync<Object>("getShiftCount", test2);
System.Diagnostics.Debug.Write(result);
I retrieve an array of boolean values using Parse Cloud Code. I'm new to C# so I assume that the array gets assigned to result
. But how can I access the individual elements of the array?
Right now I just get System.Collections.Generic.List1[System.Object]