Automatonymous.StateMachineConfigurationResult.DebuggerString C# (CSharp) Method

DebuggerString() protected method

protected DebuggerString ( ) : string
return string
        protected string DebuggerString()
        {
            var debuggerString = string.Join(", ", _results);

            return string.IsNullOrWhiteSpace(debuggerString)
                ? "No Obvious Problems says ConfigurationResult"
                : debuggerString;
        }