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

AddSpacesToParameters() private method

To help with display, put some space around sammiched commas
private AddSpacesToParameters ( string commandString ) : string
commandString string The command String.
return string
        private string AddSpacesToParameters(string commandString)
        {
            return Regex.Replace(commandString, @",([^\s])", ", $1");
        }