DotnetStandardStreams/source/DotnetStreams/IOutputTarget.cs
2025-05-15 13:27:49 -06:00

16 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DotnetStreams
{
public interface IOutputTarget
{
void Open();
void Output(string line);
void Close();
}
}