removing the first value in an array c# or java
- by MrCode
hey there i was working on a program and was thinking is it possible was to remove the value from the first element in an array. Has anyone any ideas on how this could be done ? thanks for all input is much appreciated.
i have only tried removing from the last element wasnt sure on how i would remove the first
this is how i done the last element
try
{
if (isEmpty())
{
throw new Exception("list is empty");
}
size = size -1;
return values[size];
}
catch(Exception e)
{
System.out.println(e);
return -1;
}