Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我这样做,我是否仍能保证原始系列中的订单?
是的。您所做的只是对接口的隐式强制转换 - 它对底层对象绝对没有影响。
编辑
实际上,将“a”对象转换为其接口之一可能会产生副作用。值类型在转换为接口时会被装箱。但是由于List<T>和数组是引用类型,所以没有副作用。
List<T>