16440bcf43
* Moved AddHandler<T> and AddHandler(Type) methods from IHandlersCollection to extension methods * Added public constructor to IHost types form extensibility * Code cleanup
11 lines
284 B
C#
11 lines
284 B
C#
using System.Text;
|
|
|
|
namespace Telegrator.RoslynGenerators.RoslynExtensions
|
|
{
|
|
public static class StringBuilderExtensions
|
|
{
|
|
public static StringBuilder AppendTabs(this StringBuilder builder, int count)
|
|
=> builder.Append(new string('\t', count));
|
|
}
|
|
}
|