Click here to Skip to main content
15,896,153 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.4K   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.Text.RegularExpressions;
using System.IO;
using System.Globalization;

namespace HDLibrary.UnitsOfMeasure
{
    public interface IUnitParser
    {
        /// <summary>
        /// Parses a unit string.
        /// </summary>
        /// <param name="unitStr">The string to parse.</param>
        /// <param name="resultUnitAbbreviation">The abbreviation of the returned unit. Will be ignored, if unitStr references a registered unit.</param>
        /// <param name="resultUnitName">The name of the returned unit. Will be ignored, if unitStr references a registered unit.</param>
        /// <param name="throwFormatException">Specifies whether exceptions should be thrown or null should be returned.</param>
        /// <returns>The parsed unit, or null if parsing failed and throwFormatException is false.</returns>
        Unit Parse(string unitStr, string resultUnitAbbreviation, string resultUnitName, bool throwFormatException);
    }
}

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