xiacy

导航

2012年4月23日 #

1.1.1 从简单的数据类型开始

摘要: /// <summary> /// C# 1.0 中定义的产品类型 /// </summary> public class Product1 { string name; public string Name { get { return name; } } decimal price; public decimal Price { get { return price; } } public Product1(string name, decimal price) { ... 阅读全文

posted @ 2012-04-23 23:36 xiacy 阅读(341) 评论(0) 推荐(0) 编辑