C# List - Right Rotation - Unity3D 간혹 List 를 사용 하다가 환영큐 처럼 특정 요소 이후로 모든 요소를 재배치 시킬 일이 있다. 예) 1 2 3 4 5 -> Rotate in place (3) -> 3 4 5 1 2 이럴때 다음의 Extension Method를 사용 하면 된다. public static void Rotate(this List src, T item) { int index = src.LastIndexOf(item); src.Rotate(index); } public static void Rotate(this List src, int index) { int count = src.Count - index; for (; count > 0; count--) { T ..