BF2Statistics.Web.Bf2Stats.BF2PageModel.FormatNumber C# (CSharp) Method

FormatNumber() public method

Formats an integer timestamp to a timespan format that was used in BF2sClone
public FormatNumber ( object Time ) : string
Time object
return string
        public string FormatNumber(object Time)
        {
            return String.Format(SpecificCulture, "{0:n0}", Double.Parse(Time.ToString()));
        }