コード例 #1
0
        private void UpdateStatus()
        {
            if (_inner.Length == 0)
            {
                return;
            }

            if (_queue != null)
            {
                _queue.Report(_message, (int)(_inner.Position * 100 / _inner.Length));
            }
            else
            {
                Utils.Status(_message, (int)(_inner.Position * 100 / _inner.Length));
            }
        }
コード例 #2
0
        private void UpdateStatus()
        {
            if (_inner.Length == 0)
            {
                return;
            }

            if (_queue != null)
            {
                _queue.Report(_message, Percent.FactoryPutInRange(_inner.Position, _inner.Length));
            }
            else
            {
                Utils.Status(_message, Percent.FactoryPutInRange(_inner.Position, _inner.Length));
            }
        }