StackExchange.Profiling.SqlTiming.ToString C# (CSharp) Method

ToString() public method

Returns a snippet of the SQL command and the duration.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return CommandString.Truncate(30) + " (" + DurationMilliseconds + " ms)";
        }