Development Class C#

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

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