Binboo.Core.Commands.HelpCommand.AddTabAtNewLine C# (CSharp) Method

AddTabAtNewLine() private static method

private static AddTabAtNewLine ( string str ) : string
str string
return string
        private static string AddTabAtNewLine(string str)
        {
            return Regex.Replace(str, Environment.NewLine, string.Format("{0,-17}", Environment.NewLine));
        }