Files
basic-computer-games/61 Math Dice/csharp/StringExtensions.cs
2021-03-05 22:06:36 +00:00

16 lines
413 B
C#

namespace MathDice
{
public static class StringExtensions
{
private const int ConsoleWidth = 120; // default console width
public static string CentreAlign(this string value)
{
int spaces = ConsoleWidth - value.Length;
int leftPadding = spaces / 2 + value.Length;
return value.PadLeft(leftPadding).PadRight(ConsoleWidth);
}
}
}