Click here to Skip to main content
15,880,392 members
Articles / Desktop Programming / XAML

And Now for XAML Completely Different

Rate me:
Please Sign up or sign in to vote.
4.92/5 (46 votes)
1 Apr 2010CPOL6 min read 43.1K   397   59  
Using Markup Extensions to build individual markup based declarative systems with XAML
//
// MarkupScript                                                  
// Author: Tom Englert
// Contact: mail@tom-englert.de
// Copyright (C) 2010 tom-englert.de
//

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MarkupScript
{
    /// <summary>
    /// The Scope statement. Create a new scope where you can define local variables.
    /// </summary>
    public class Scope : CompoundStatement
    {
        public Scope()
        {
        }

        public Scope(INode parent)
            : base(parent)
        {
        }
    }
}

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 (Senior)
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions