2008年4月27日
摘要: 购物车类:ShopCart.cs(说明:主要利用hashtable保存商品对象) using System; using System.Collections; /// /// 购物车类 /// [Serializable] public class ShopCart { public Hashtable _CartItems = new Hashtable(); /... 阅读全文
posted @ 2008-04-27 21:45 优雅旋律 阅读(540) 评论(1) 推荐(0) 编辑