Development Class C#

//http://isotopescreencapture.codeplex.com/
//The MIT License (MIT)
namespace Isotope.Math
{
    public static class MathUtil
    {
        /// 
        /// Returns the minimum value of three numbers
        /// 

        /// 
        /// 
        /// 
        /// 
        public static double Min(double a, double b, double c)
        {
            return (System.Math.Min(System.Math.Min(a, b), c));
        }
   }
}