2025-08-16 13:13:34 +04:00
|
|
|
using System.Text;
|
|
|
|
|
|
2025-08-18 20:32:24 +04:00
|
|
|
namespace Telegrator.Analyzers.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));
|
|
|
|
|
}
|
|
|
|
|
}
|