c809470fb0
* Telegram.Bot package updated
11 lines
267 B
C#
11 lines
267 B
C#
using System.Text;
|
|
|
|
namespace Telegrator.RoslynExtensions
|
|
{
|
|
public static class StringBuilderExtensions
|
|
{
|
|
public static StringBuilder AppendTabs(this StringBuilder builder, int count)
|
|
=> builder.Append(new string('\t', count));
|
|
}
|
|
}
|