Candor.ExecutionResults.ToString C# (CSharp) Method

ToString() public method

Converts the results of this instance into a single string using the supplied delimeter.
public ToString ( string delimeter ) : string
delimeter string Optional, a string to place /// between each execution step. Pass in /// 'null' or an empty string for no delimeter.
return string
        public string ToString( string delimeter )
        {
            return this.ToString("{StepType} : {Message}", delimeter);
        }

Same methods

ExecutionResults::ToString ( ) : string
ExecutionResults::ToString ( string itemFormat, string delimeter ) : string