mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 12:51:29 -08:00
7 lines
183 B
C#
7 lines
183 B
C#
namespace SuperStarTrek;
|
|
|
|
internal static class StringExtensions
|
|
{
|
|
internal static string Pluralize(this string singular, int quantity) => singular + (quantity > 1 ? "s" : "");
|
|
}
|