Files
TheXamlGuy/Framework/Serial/ISerialWriter.cs
T
2022-11-01 15:26:08 +00:00

7 lines
132 B
C#

namespace TheXamlGuy.Framework.Serial;
public interface ISerialWriter
{
void Write(byte[] buffer, int offset, int count);
}