NiceHashMiner.Algorithm.BenchmarkSpeedString C# (CSharp) Метод

BenchmarkSpeedString() публичный Метод

public BenchmarkSpeedString ( ) : string
Результат string
        public string BenchmarkSpeedString()
        {
            if (!Skip && IsBenchmarkPending && !string.IsNullOrEmpty(BenchmarkStatus)) {
                return BenchmarkStatus;
            } else if (BenchmarkSpeed > 0) {
                return Helpers.FormatSpeedOutput(BenchmarkSpeed);
            }
            return International.GetText("BenchmarkSpeedStringNone");
        }