SyntaxFix
Write A Post
Hire A Developer
Questions
You could use the arrays CopyTo() method.
CopyTo()
Or with LINQ you can use Skip() and Take()...
Skip()
Take()
byte[] arr = {1, 2, 3, 4, 5, 6, 7, 8}; var subset = arr.Skip(2).Take(2);