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