BF2Statistics.Web.Bf2Stats.WeaponSummary.AverageDeaths C# (CSharp) Method

AverageDeaths() public method

public AverageDeaths ( int NumWeapons ) : double
NumWeapons int
return double
        public double AverageDeaths(int NumWeapons)
        {
            return Math.Round((double)TotalDeaths / NumWeapons, 0);
        }