c # 목록을 뒤집으려고 public class CategoryNavItem { public int ID { get; set; } public string Name { get; set; } public string Icon { get; set; } public CategoryNavItem(int CatID, string CatName, string CatIcon) { ID = CatID; Name = CatName; Icon = CatIcon; } } public static List getMenuNav(int CatID) { List NavItems = new List(); -- Snipped code -- return NavItems.Reverse(); } 그 반대는 작동하지 않습니다. Error 3..