using System.Collections.Generic;
public static void Main()
""sourceDictionary"": ""wiktionary"",
""attributionUrl"": ""http://creativecommons.org/licenses/by-sa/3.0/"",
""attributionText"": ""from Wiktionary, Creative Commons Attribution/Share-Alike License"",
""partOfSpeech"": ""verb"",
""text"": ""To hoist (the anchor) by its ring so that it hangs at the cathead."",
""sourceDictionary"": ""wiktionary"",
""attributionUrl"": ""http://creativecommons.org/licenses/by-sa/3.0/"",
""attributionText"": ""from Wiktionary, Creative Commons Attribution/Share-Alike License"",
""partOfSpeech"": ""verb"",
""text"": ""To flog with a cat-o'-nine-tails."",
""sourceDictionary"": ""wiktionary"",
""attributionUrl"": ""http://creativecommons.org/licenses/by-sa/3.0/"",
""attributionText"": ""from Wiktionary, Creative Commons Attribution/Share-Alike License"",
""partOfSpeech"": ""verb"",
""text"": ""To vomit something."",
""sourceDictionary"": ""wiktionary"",
""attributionUrl"": ""http://creativecommons.org/licenses/by-sa/3.0/"",
""attributionText"": ""from Wiktionary, Creative Commons Attribution/Share-Alike License"",
""partOfSpeech"": ""verb"",
""text"": ""To apply the cat command to (one or more files)."",
""sourceDictionary"": ""wiktionary"",
""attributionUrl"": ""http://creativecommons.org/licenses/by-sa/3.0/"",
""attributionText"": ""from Wiktionary, Creative Commons Attribution/Share-Alike License"",
""partOfSpeech"": ""verb"",
""text"": ""To dump large amounts of data on (an unprepared target) usually with no intention of browsing it carefully."",
var worddata = JsonConvert.DeserializeObject<List<WordDefinition>>(jsontext);
var text = worddata[0].text;
public class WordDefinition
public List<object> textProns { get; set; }
public string sourceDictionary { get; set; }
public List<object> exampleUses { get; set; }
public List<object> relatedWords { get; set; }
public List<Label> labels { get; set; }
public List<object> citations { get; set; }
public string word { get; set; }
public string attributionUrl { get; set; }
public string attributionText { get; set; }
public string partOfSpeech { get; set; }
public string text { get; set; }
public double score { get; set; }
public string type { get; set; }
public string text { get; set; }