HELP How to remove gameobject from Built-in Arrays

basicaly i just want to know how do u remove a gameobject from a Built-in Arrays
if u dont know…its that

var BLA:GameObject;

i know ther are a lot of arrays that can be better but i tried and that one is better for what i want to do…so if u know…if u have reference…tell me PLZ!

You can’t do that easily. You need to use a List.< GameObject> if it needs to be added to or removed from while the game is playing.

//remove item in slot 0
InBag.RemoveAt(0);

Everything slides up so what was in slot 1 now became slot 0.

Array functions list with examples at the bottom:

http://docs.unity3d.com/Documentation/ScriptReference/Array.html