2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-04-03 20:08:21 +00:00
This commit is contained in:
2026-04-03 12:58:39 +03:00
parent 915a6c1088
commit d5c434b6af
2 changed files with 9 additions and 4 deletions

View File

@@ -19,7 +19,9 @@ public class SendList : BinaryList
public override AsyncReply<object[]> Done()
{
connection.Send(this.ToArray());
var s = this.ToArray();
//Console.WriteLine($"Sending {s.Length} -> {DC.ToHex(s)}");
connection.Send(s);
return reply;
}
}