List 개체는 C #의 List 변수에 저장할 수 없으며 명시 적으로 캐스팅 할 수도 없습니다.
List<string> sl = new List<string>();
List<object> ol;
ol = sl;
암시 적으로 유형 System.Collections.Generic.List<string>
을 다음으로 변환 할 수 없음System.Collections.Generic.List<object>
그리고...
List<string> sl = new List<string>();
List<object> ol;
ol = (List<object>)sl;
유형 System.Collections.Generic.List<string>
을 다음으로 변환 할 수 없음System.Collections.Generic.List<object>
물론 문자열 목록에서 모든 것을 꺼내서 한 번에 하나씩 다시 넣는 방식으로 할 수 있지만 다소 복잡한 솔루션입니다.