mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 12:25:10 -08:00
17 lines
303 B
C#
17 lines
303 B
C#
using System.Text;
|
|
|
|
namespace Love;
|
|
|
|
internal static class StringBuilderExtensions
|
|
{
|
|
internal static StringBuilder AppendLines(this StringBuilder builder, int count)
|
|
{
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
builder.AppendLine();
|
|
}
|
|
|
|
return builder;
|
|
}
|
|
}
|