0
0
0
0
1.0
From Fat Agnus, 9 months ago,
0 views
In a previous article I gave an example of how powerfull the SmartDispatcherController can be, but you can do a lot more with it. You can actually map your Json objects to your objects in the C# code, when you parse it to one of your actions.
1
2
3
4
5
6
public struct JSONObject
{
public string Var1;
public string Var2;
public int[] Var3;
}
There [...]
comments
You must be logged in to add your own comment.