CopyByteArray() публичный статический Метод

Copy byte array to another byte array memory space.
public static CopyByteArray ( Array inBuf, int start, int len ) : byte[]
inBuf Array byte array to copy.
start int Starting index to copy.
len int Length to copy.
Результат byte[]
Пример #1
0
 /// <summary>
 /// Get byte array from the current output buffer memory space.
 /// </summary>
 /// <param name="start"> start index. </param>
 /// <param name="len"> len of the byte to read. </param>
 /// <returns></returns>
 public byte[] GetBytesFromOutputBuffer(int start, int len)
 {
     return(JCS_Util.CopyByteArray(mOutputBuff, start, len));
 }