摘要: using System;using System.Collections.Generic;using System.Text;namespace CustomGenericCollection{ #region 汽车的定义 public class Car { public string PetName; public int Speed; public Car(string name, int currentSpeed) { PetName = name; Speed = ... 阅读全文
posted @ 2014-04-09 17:36 liyx0618 阅读(181) 评论(0) 推荐(0) 编辑