Click here to Skip to main content
15,881,709 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.8K   2K   79  
A small LinqToJSON library in C#, and how it works

namespace Ranslant.JSON.Linq
{
	internal sealed class JToken
	{
        internal static string True = "true";
        internal static string False = "false";
        internal static string Null = "null";
        internal static string StringDelimiter = @"""";
        internal static string ObjectStart = "{";
        internal static string ObjectEnd = "}";
        internal static string ObjectMemberPairSeparator = ":";
        internal static string ArrayStart = "[";
        internal static string ArrayEnd = "]";
        internal static string ValuesSeparator = ",";
	}
}

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