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)); } }
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)); } }