79569855

Date: 2025-04-11 23:55:45
Score: 1
Natty:
Report link

Specify the Array type and start copying from 1. Although theoretically it could be any number depending on how you got the Byte[*].

len = (Array)byteWithStar.Length;
byte[] arr = new byte[len];
Array.Copy((Array)byteWithStar, 1, arr, 0, len);

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arkady Kornienko