mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
9 lines
360 B
C#
9 lines
360 B
C#
namespace Chief;
|
|
|
|
internal static class IReadWriteExtensions
|
|
{
|
|
internal static bool ReadYes(this IReadWrite io, string format, Number value) =>
|
|
io.ReadYes(string.Format(format, value));
|
|
internal static bool ReadYes(this IReadWrite io, string prompt) =>
|
|
io.ReadString(prompt).Equals("Yes", StringComparison.InvariantCultureIgnoreCase);
|
|
} |