fBaseXtensions.Stats.TrackedProfile.GenerateOutput C# (CSharp) Method

GenerateOutput() public method

Adds the sum of each property of the given TrackedProfile to this instance.
public GenerateOutput ( ) : string
return string
        public string GenerateOutput()
        {
            return String.Format("{0} TotalTime:{2}" +
                                 "\r\nDeaths:{1} ({4} dph)" +
                                "\r\nTotal Town Runs: {7}" +
                                "\r\nHoradric Caches Opened: {5}" +
                                "\r\nItems Gambled: {6}" +
                                "\r\n{3}",
                                ProfileName,
                                DeathCount,
                                TotalTimeSpan.ToString(@"hh\ \h\ mm\ \m\ ss\ \s"),
                                LootTracker,
                                (DeathCount / TotalTimeSpan.TotalHours).ToString("#.##"),
                                HoradricCacheOpened, ItemsGambled, TownRuns);
        }