r2mods/ilspy_dump/ror2_csproj/UDPHelperSpace/UDPSenderWork.cs

28 lines
545 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
namespace UDPHelperSpace;
public class UDPSenderWork
{
public byte[] AddDataSend(byte[] bytes, int packageNumber)
{
if (bytes == null || bytes.Length < 4)
{
return bytes;
}
bytes = AddByteToArray(bytes, packageNumber);
return bytes;
}
private byte[] AddByteToArray(byte[] bArray, int newByte)
{
return AddByteToArray(bArray, (byte)newByte);
}
public byte[] AddByteToArray(byte[] bArray, byte newByte)
{
byte[] array = new byte[bArray.Length + 1];
bArray.CopyTo(array, 1);
array[0] = newByte;
return array;
}
}