7 lines
132 B
C#
7 lines
132 B
C#
namespace TheXamlGuy.Framework.Serial;
|
|
|
|
public interface ISerialWriter
|
|
{
|
|
void Write(byte[] buffer, int offset, int count);
|
|
}
|