public void CycleShiftByReverse(ref String strarr, int rotdist){ this.StrReverse(ref strarr, 0, rotdist - 1); this.StrReverse(ref strarr, rotdist, strarr.Length - 1); this.StrReverse(ref strarr, 0, strarr.Length - 1);}