Posts by Rafaelqueiroz • 53 points
2 posts
-
0
votes1
answer132
viewsQ: How to make a deserialize in a Json with C-Sharp
I have the following code private void WbRanking_DownloadDataCompleted(object sender, DownloadDataCompletedEventArgs e) { RunOnUiThread(() => { string json = Encoding.UTF8.GetString(e.Result);…
-
5
votes1
answer66
viewsQ: Parameterizing Dataset in C#
I created a search screen with a textbox, one button and a gridview. I would like the search results to appear on this Gridview but I can only do that with one Dataset. In this case I needed to find…