Access your Microsoft JSON DOM the easy way with the dynamic keyword
Briefly

You typically have to use a DOM or parser of some sort to navigate and access data in your JSON infoset in C#. This can hinder readability and make your code awkward.
C# offers the dynamic keyword which can be used to late bind, but you lose static typing in the process. Thus, the JSON objects are made read-only.
Read at CodeProject
[
|
]