Hi All,

I am trying to implement some methods so I can do the below functions

Code:
        public MyCollection BringToFront(MyCollection coll)
        {
            MyCollection tem = coll;
            tem.Reverse(Index,0);
            return tem;
        }

        public MyCollection BringCloser(MyCollection coll)
        {

        }

        public MyCollection SendToBack(MyCollection coll)
        {

        }

        public MyCollection SendFurther(MyCollection coll)
        {

        }
But I am having some difficulties, couls someone please show me how to do this?

Thanks

Loftty