BattlelogMobile.Core.Model.Overview.SetKillDeathRatio C# (CSharp) Метод

SetKillDeathRatio() приватный Метод

private SetKillDeathRatio ( ) : void
Результат void
        private void SetKillDeathRatio()
        {
            if (!Kills.HasValue || !Deaths.HasValue)
                return;

            KillDeathRatio = Math.Round(((double)Kills.Value / (double)Deaths.Value), 2);
        }