Encog.Util.Format.FormatPercentWhole C# (CSharp) Method

FormatPercentWhole() public static method

Format a percent with no decimal places.
public static FormatPercentWhole ( double e ) : String
e double The format to percent.
return String
        public static String FormatPercentWhole(double e)
        {
            return (e*100.0).ToString("N0") + "%";
        }