Cannot implicitly convert List to Collection

后端 未结 7 2097
悲哀的现实
悲哀的现实 2020-12-08 13:44

This is a compiler error (slightly changed for readability).

This one always puzzled me. FxCop tells that this is a bad thing to return List and classes that are\\de

相关标签:
7条回答
  • 2020-12-08 13:56

    You can use the the below

    public class EmployeeCollection : Collection<Employee>
    {
          public EmployeeCollection(IList<Employee> list) : base(list)
          {}
    
          public EmployeeCollection() : base()
          {}
    
    }
    

    Use the class like this

    EmployeeCollection  employeeCollection = new EmployeeCollection(list)
    
    0 讨论(0)
  • 2020-12-08 13:57

    The other way around, it is not necessary to loop... you can make just .ToList()

        ICollection<T> collection = new Collection<T>();
    

    fill your collection using any method, and when you need the list, just do this:

        List<T> list = collection.ToList();
    

    after that you can use whatever you want with your list.

    Have a good coding!

    0 讨论(0)
  • 2020-12-08 13:58

    Here is a generic extension method written in C# 3.0 used to convert List<T> to Collection<T>

    using System.Collections.Generic;
    using System.Collections.ObjectModel;
    
    public static class ExtensionMethods
    {
        public static Collection<T> ToCollection<T>(this List<T> items)
        {
            Collection<T> collection = new Collection<T>();
    
            for (int i = 0; i < items.Count; i++)
            {
                collection.Add(items[i]);
            }
    
            return collection;
        }
    }
    

    and it is used like this…

    List<string> entities = new List<string>();
    entities.Add("Value 1");
    entities.Add("Value 2");
    entities.Add("Value 3");
    entities.Add("Value 4");
    
    Collection<string> convertedEntities = entities.ToCollection<string>();
    
    0 讨论(0)
  • 2020-12-08 13:58

    This is how you convert from List<T> to Collection<T> (while using LINQ):

    The old function:

    public List<Employee> GetEmployee(int id)
    {
         return ( from e in MyDataContext.Employees
                       select new Employee()
                       {
                         e.empId = id
                       }
                 ).ToList();
    }
    

    After conversion:

    using System.Collection.ObjectModel;
    
    public Collection<Employee> GetEmployee(int id)
    {
               return new Collection<Employee>( 
                   (from e in MyDataContext.Employees
                         select new Employee()
                         {
                           e.empId = id
                         }
                    ).ToList() as IList<Employee>
               );
    }
    
    0 讨论(0)
  • 2020-12-08 14:06

    List<T> doesn't inherit from Collection<T>. Plain and simple. Unless List<T> provides an operator to implicitly convert to/from Collection<T>, you can't do it. I would actually suggest returning List<T> if you can, as I believe the rules go something like this:

    Accept as a parameter the least constrictive interface possible. Return as a return parameter the most constrictive type possible.

    0 讨论(0)
  • 2020-12-08 14:11

    List<T> doesn't derive from Collection<T> - it does, however, implement ICollection<T>. That would be a better choice of return type.

    As for the new List<int>(some collection<int>) question - it partly depends on what the collection is. If it implements ICollection<T> (at execution time) then the constructor can use its Count property to create the list with the right initial capacity before iterating through it and adding each item. If it doesn't implement ICollection<T> then it's just equivalent to:

    List<int> list = new List<int>();
    foreach (int x in otherCollection)
    {
        list.Add(x);
    }
    

    Still nice to have in a convenient constructor, but not hugely efficient - it can't be, really.

    I don't believe the constructor does anything cunning for arrays, which it potentially could - using Array.Copy or whatever to just copy the lot in one go rather than iterating though. (Likewise if it were another List<T> it could get at the backing array and copy that directly.)

    0 讨论(0)
提交回复
热议问题