예제 #1
0
        private double GetDistanceInMeters()
        {
            if (_distance == null)
            {
                var u = new Utils.Utility();
                _distance = u.GetDistanceInMeters(GetPings().OrderBy(p => p.Time).ToList());
            }

            return(_distance ?? 0);
        }