5
Answers

Unable to understand project level code

Anbu Rajan

Anbu Rajan

7y
152
1
I completed c# course recently. They thoroughly covered all concepts including oops concepts. But when I enter into project, i am hearing different Jorgans, terms... And which concept I studied is implemented in the project code. Help me to understand the project level code concepts.
Answers (5)
1
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 10y
hi,

This is nothing but JSON string object. you can convert it to the object using System.Web.Script.Serialization.JavaScriptSerializer class.

like

string json = "[{\"url\":\"https://www.filepicker.io/api/file/xyz\",\"filename\":\"image.jpg\",\"mimetype\":\"image/jpeg\",\"size\":10006,\"isWriteable\":true},{\"url\":\"https://www.filepicker.io/api/file/lmn\",\"filename\":\"image2.jpg\",\"mimetype\":\"image/jpeg\",\"size\":45998,\"isWriteable\":true},{\"url\":\"https://www.filepicker.io/api/file/stu\",\"filename\":\"image3.jpg\",\"mimetype\":\"image/jpeg\",\"size\":98071,\"isWriteable\":true}]";
var objects = new JavaScriptSerializer().Deserialize<dynamic>(json);

string url = objects[0]["url"];

hope this will help you.
Accepted
0
piya p

piya p

NA 84 31.6k 10y
Hey thank you very much its working properly..

0
piya p

piya p

NA 84 31.6k 10y
"[{\"url\":\"https://www.filepicker.io/api/file/xyz\",\"filename\":\"image.jpg\",\"mimetype\":\"image/jpeg\",\"size\":10006,\"isWriteable\":true},
{\"url\":\"https://www.filepicker.io/api/file/lmn\",\"filename\":\"image2.jpg\",\"mimetype\":\"image/jpeg\",\"size\":45998,\"isWriteable\":true},
{\"url\":\"https://www.filepicker.io/api/file/stu\",\"filename\":\"image3.jpg\",\"mimetype\":\"image/jpeg\",\"size\":98071,\"isWriteable\":true}]"

are my urls
0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 10y
hi,

Is there any separator between all urls?
can you please share url string what you get from youtube what is your expected result?