码迷,mamicode.com
首页 > 其他好文 > 详细

重写ToString与实现扩展方法

时间:2014-07-09 08:48:12      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:重写tostring与实现扩展方法   重写tostring   扩展方法   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Money m = new Money();
            m.Amount = 30.00m;
            Console.WriteLine(m.ToString());//输出$:30.00
            //使用扩展方法
            m.AddToMoney(1.00m);
            Console.WriteLine(m.ToString());//输出$:31.00
            Console.ReadKey();
        }
    }

    public class Money {
        private decimal amount;
        public decimal Amount {
            set { amount = value; }
            get { return amount; }
        }
        public override string ToString()//重写ToString方法
        {
            return "$:" + amount.ToString();
        }
    }
    //扩展方法
    public static class MoneyExtension {
        //this Money m 扩展方法的规则,告诉编译器这个方法是Money类型的一部分
        public static void AddToMoney(this Money m, decimal d)
        {
            m.Amount += d;
        }
    }
    
}

本文出自 “程序猿的家” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1436085

重写ToString与实现扩展方法,布布扣,bubuko.com

重写ToString与实现扩展方法

标签:重写tostring与实现扩展方法   重写tostring   扩展方法   

原文地址:http://962410314.blog.51cto.com/7563109/1436085

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