mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
16 lines
413 B
C#
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);
|
|
}
|
|
}
|
|
}
|