Click here to Skip to main content
15,884,537 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

namespace Ranslant.JSON.Linq
{
    public class JFalse : IJValue
	{
        /// <summary>
        /// returns 'false'
        /// </summary>
        public bool Content
        {
            get
            {
                return false;
            }
        }

        public string ToString(int indentLevel)
        {
            return this.ToString();
        }

        public new string ToString()
        {
            // I do not use Content.ToString() because I want to keep the JSON string 
            // representation of this object independent of C#
            return JToken.False;
        }
    }
}

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