14
C #에서 List <string> 개체를 List <object> 변수에 저장할 수없는 이유
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>을 다음으로 변환 할 …