MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / ReadBytes

Method ReadBytes

projects/CSharp/Proto/com.chronoxor.fbe.cs:350–355  ·  view source on GitHub ↗
(byte[] buffer, long offset, long size)

Source from the content-addressed store, hash-verified

348 }
349
350 public static byte[] ReadBytes(byte[] buffer, long offset, long size)
351 {
352 byte[] result = new byte[size];
353 Array.Copy(buffer, offset, result, 0, (int)size);
354 return result;
355 }
356
357 public static string ReadString(byte[] buffer, long offset, long size)
358 {

Callers 1

ReadBytesMethod · 0.45

Calls 1

CopyMethod · 0.45

Tested by

no test coverage detected