Can you please tell, how can I access value of my dynamic variable in C#.NET.
dynamic response = api.createSession(order.Tables[0].Rows[i]["sessionid"].ToString(),
"description=" + description +
"&organization=" + organization +
"&allowUpload=" + allowUpload +
"&singleSignOnOnly=" + singleSignOnOnly +
"&maxUserCount=" + maxUserCount);
In above, "response" is dynamic variable and need to access its value. I have tried following..
string[] myStringArray = new string[50];
myStringArray[0] = response[2]["Value"];
Thanks in advance..