码迷,mamicode.com
首页 > Windows程序 > 详细

C#结构函数与base关键字

时间:2015-05-22 23:57:57      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

 //声明父类
    class ProductsFather
    {
        public double Price
        {
            get;
            set;
        }
        public int Count
        {
            get;
            set;
        }
        public string Id
        { get; 
            set; }

        //给字段赋值 c#结构函数
        public ProductsFather(double price, int count, string id)
        {
            this.Price = price;
            this.Count = count;
            this.Id = id;
        }


    }
  class Xiangjiao:ProductsFather
    {
        public Xiangjiao(double pirce, int count, string id)
            : base(pirce, count, id)
        { 

        }
    }

 

C#结构函数与base关键字

标签:

原文地址:http://www.cnblogs.com/zywf/p/4523425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!