Add remarks comment

This commit is contained in:
Andrew Cooper
2022-02-15 22:37:09 +11:00
parent 35f68dcf72
commit 728c5b8a00

View File

@@ -10,6 +10,10 @@ namespace Games.Common.IO;
/// Implements <see cref="IReadWrite" /> with input read from a <see cref="TextReader" /> and output written to a
/// <see cref="TextWriter" />.
/// </summary>
/// <remarks>
/// This implementation reproduces the Vintage BASIC input experience, prompting multiple times when partial input
/// supplied, rejecting non-numeric input as needed, warning about extra input being ignored, etc.
/// </remarks>
public class TextIO : IReadWrite
{
private readonly TextReader _input;