I have this very simple array which I want to be able to move around some items in. Are there any built in tools in c# to do this? If not, du you have any suggestion in how
It's an existing question:
C# Array Move Item (Not ArrayList/Generic List)
The answer is:
void MoveWithinArray(Array array, int source, int dest) { Object temp = array.GetValue(source); Array.Copy(array, dest, array, dest + 1, source - dest); array.SetValue(temp, dest); }