Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C#

Small LINQ to JSON Library

Rate me:
Please Sign up or sign in to vote.
4.96/5 (28 votes)
6 Dec 2011CPOL13 min read 80.9K   2K   79  
A small LinqToJSON library in C#, and how it works

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ranslant.JSON.Linq", "Ranslant.JSON.Linq.csproj", "{4C409818-77A2-4234-8410-26255A8FCC11}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoApp", "..\DemoApp\DemoApp.csproj", "{CCF833AD-1D53-445D-A965-D2B04949AD60}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{4C409818-77A2-4234-8410-26255A8FCC11}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Debug|x86.ActiveCfg = Debug|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Release|Any CPU.Build.0 = Release|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{4C409818-77A2-4234-8410-26255A8FCC11}.Release|x86.ActiveCfg = Release|Any CPU
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Debug|Any CPU.ActiveCfg = Debug|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Debug|x86.ActiveCfg = Debug|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Debug|x86.Build.0 = Debug|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Release|Any CPU.ActiveCfg = Release|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Release|Mixed Platforms.Build.0 = Release|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Release|x86.ActiveCfg = Release|x86
		{CCF833AD-1D53-445D-A965-D2B04949AD60}.Release|x86.Build.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer IPG
Germany Germany
since 2010: C# with WPF
since 2002: C++ (MFC / QT)
since 1995: C, Java, Pascal


"if a drummer can do it, anobody can" - Bruce Dickinson

Comments and Discussions