Add pizza implementation in c#

This commit is contained in:
Flow
2022-01-09 18:51:34 +01:00
parent 3efbb9164c
commit dedca6ac0d
6 changed files with 494 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System.Text;
namespace Pizza
{
internal static class StringBuilderExtensions
{
/// <summary>
/// Extensions for adding new lines of specific value.
/// </summary>
/// <param name="stringBuilder">Extended class.</param>
/// <param name="value">Value which will be repeated.</param>
/// <param name="numberOfLines">Number of lines that will be appended.</param>
public static void AppendLine(this StringBuilder stringBuilder, string value, int numberOfLines)
{
for (int i = 0; i < numberOfLines; i++)
{
stringBuilder.AppendLine(value);
}
}
}
}