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.
当我将(仅用于显示值)传递给视图包时,数组或列表。
使用剃刀引擎浏览 foreach 中的元素时,它是否会改变某些东西(速度或内存)?
在大多数情况下,选择 array[] 而不是 List 对性能的影响可以忽略不计。
当然,array[] 不那么抽象,并且在 CLR 中“按原样”使用,但是失去 List 对象的所有功能的麻烦通常不值得最小的性能提升。
你可以在这里阅读更多:https ://stackoverflow.com/a/5777746/971693