Revision: 31479
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 7, 2010 12:57 by jx_boi
Initial Code
private byte[] FillEmptyByte(byte[] a, int size)
{
byte[] cBytes;
int fill = size - a.Length;
if (fill > 0)
{
byte[] bFill = new byte[fill];
cBytes = CombineByte(a, bFill);
}
else
cBytes = a;
return cBytes;
}
Initial URL
Initial Description
Initial Title
Fill Empty Bytes
Initial Tags
Initial Language
C#