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