How to remove first 8 elements from an int[] array

  • Thread starter Thread starter Silvers11
  • Start date Start date
S

Silvers11

Guest
Hello!

I wonder how it is possible to remove for example the 8 first elements from this array as fast as possible?

Thank you!


int[] arr = new int[100008];

for (int i = 0; i < 100008; i++)

{ arr = 2; }

Continue reading...
 
Back
Top