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

Units of Measure Validator for C#

Rate me:
Please Sign up or sign in to vote.
4.66/5 (28 votes)
2 Jul 2012CPOL7 min read 81.2K   2.4K   41  
This library provides a MSBuild task for compile time validation of units of measurement within C# code.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Linq.Expressions;

namespace HDLibrary.UnitsOfMeasure
{
    [Serializable]
    public class InvalidUnitConversionException : Exception
    {
        public InvalidUnitConversionException(string sourceUnit, string targetUnit) { }
        public InvalidUnitConversionException(string sourceUnit, string targetUnit, string message) : base(message) { }
        public InvalidUnitConversionException(string message, Exception inner) : base(message, inner) { }
        protected InvalidUnitConversionException(
          System.Runtime.Serialization.SerializationInfo info,
          System.Runtime.Serialization.StreamingContext context)
            : base(info, context) { }
    }
}

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
Student
Germany Germany
Presently I am a student of computer science at the Karlsruhe Institute of Technology in Germany.

Comments and Discussions