2025-08-16 13:13:34 +04:00
|
|
|
using System.Text;
|
|
|
|
|
|
2025-08-19 04:33:02 +04:00
|
|
|
namespace Telegrator.RoslynGenerators.RoslynExtensions
|
2025-08-16 13:13:34 +04:00
|
|
|
{
|
|
|
|
|
public static class StringBuilderExtensions
|
|
|
|
|
{
|
|
|
|
|
public static StringBuilder AppendTabs(this StringBuilder builder, int count)
|
|
|
|
|
=> builder.Append(new string('\t', count));
|
|
|
|
|
}
|
|
|
|
|
}
|