Click here to Skip to main content
15,887,596 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.4K   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>
    /// Decrement a given value, returns the incremented value.
    /// </summary>
    public class Decrement : Statement, IExpression, IStatement
    {
        /// <summary>
        /// Reference to the value to increment.
        /// </summary>
        public Ref Variable { get; set; }

        public override object OnEvaluate()
        {
            if (Variable == null)
            {
                throw new InvalidOperationException("Decrement needs a value reference.");
            }

            int newValue = (int)ToDouble(Variable.Value);
            Variable.Value = --newValue;
            return newValue;
        }
    }
}

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