FastQuant.Clock.GetModeAsString C# (CSharp) Method

GetModeAsString() public method

public GetModeAsString ( ) : string
return string
        public string GetModeAsString() => this.mode == ClockMode.Realtime ? "Realtime" : this.mode == ClockMode.Simulation ? "Simulation" : "Undefined";
    }