14
En C #, ¿por qué no se puede almacenar un objeto List <string> en una variable List <object>?
Parece que un objeto List no se puede almacenar en una variable List en C #, y ni siquiera se puede convertir explícitamente de esa manera. List<string> sl = new List<string>(); List<object> ol; ol = sl; da como resultado No se puede convertir implícitamente el tipo System.Collections.Generic.List<string>aSystem.Collections.Generic.List<object> Y entonces... List<string> …