Click here to Skip to main content
15,889,867 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
Hi,
I am working in a metro app to show youtube videos and user can play or rate video. I am using this uri
http://gdata.youtube.com/feeds/api/videos/ADos_xW4_J0?v=2&alt=jsonc

and get json response but now when I am trying to deserialize it into c# class I am getting error. I am using newtonsoft to convert json to class.

Method which I am using is
C#
public static T Deserialize<T>(string json)
{
    T obj = Activator.CreateInstance<T>();
    using (MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(json)))
    {
        obj = (T)JsonConvert.DeserializeObject(json, obj.GetType());
        return obj;
    }
}

This method convert json data to c# class.
Is there any other way to get video details from youtube.

[Edit]Code block added[/Edit]
Posted
Updated 3-Nov-12 0:50am
v2

1 solution

Hi,
Thank god its not a big deal. I just added the newtonsoft dll reference, may be this is the problem beacause when I install the newtonsoft package from package console everything gets solved, no error is thrown.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900