|
发表于 2020-5-8 10:30:01
|
显示全部楼层
1、用Hashtable没有什么行不通的
[SerializableAttribute]
public class CartItemInfo: Hashtable{
public CartItemInfo(string itemId, string name, int qty, decimal price, string type, string categoryId, string productId) {
....
}
}
2、性能的影响你循环几千次就可以看出区别了。
3、原来的CartItemInfo个人觉得没什么不好,如果每个类需要索引取值的方法你可以加一个方法,而不是全部替换掉(你可以写个基类继承下这样修改起来方便点)。如果不是每个类都需要
我觉得写个静态方法就可以了。
========================
仅供参考
|
|