Click here to Skip to main content
15,891,607 members
Articles / Programming Languages / C# 4.0

TinyLisp: A Language and Parser to See LINQ Expressions in Action

Rate me:
Please Sign up or sign in to vote.
4.95/5 (10 votes)
12 Jun 2010CPOL11 min read 33.7K   343   27  
A small program that parses expressions and evaluates them using LINQ Expressions
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;

namespace TinyLisp {
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application {
    }
}

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
Leaseplan Corporation
Netherlands Netherlands
Gert-Jan is a Senior Quantitative Risk Manager at Leaseplan Corporation. In that job he doesn't get to code much he does these little projects to keep his skills up and feed the inner geek.

Comments and Discussions