9 lines
265 B
C#
9 lines
265 B
C#
|
namespace InnovEnergy.Lib.Protocols.DBus.WireFormat;
|
||
|
|
||
|
internal class DBusMeasureWriter : DBusWriter
|
||
|
{
|
||
|
private Int32 _BytesWritten = 0;
|
||
|
|
||
|
public override Int32 BytesWritten => _BytesWritten;
|
||
|
public override void WriteByte(Byte value) => _BytesWritten++;
|
||
|
}
|