25111106 正压压28出货版本

This commit is contained in:
moxiliang
2025-11-14 09:41:37 +08:00
parent dcd9b20fb0
commit c5a60cc54c
477 changed files with 96521 additions and 647622 deletions

View File

@@ -0,0 +1,20 @@
using System;
namespace NetWorkHelper
{
public delegate void ReadFileBufferEventHandler(object sender, ReadFileBufferEventArgs e);
public class ReadFileBufferEventArgs : EventArgs
{
public ReadFileBufferEventArgs(int index, byte[] buffer)
: base()
{
Index = index;
Buffer = buffer;
}
public int Index { get; }
public byte[] Buffer { get; }
}
}