N
N
Nikolay L2018-08-09 11:34:10
Arrays
Nikolay L, 2018-08-09 11:34:10

How to remove the first 12 bytes of an array?

How to remove the first 12 bytes of an array?
array[]

Answer the question

In order to leave comments, you need to log in

3 answer(s)
B
basrach, 2018-08-09
@kolyaL

byte[] array = ...
array = array.Skip(12).ToArray();

R
Roman, 2018-08-09
@yarosroman

Copy to another, skipping 12 elements or array.Skip(12)

D
Dmitry Eremin, 2018-08-09
@EreminD

Array.Copy

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question