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

拓展方法

时间:2017-11-12 13:33:17      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:class   bsp   str   this   code   额外   foo   col   logs   

1.拓展方法为类提供额外的方法,拓展方法在静态类中定义,定义为静态方法,

public static class StringExt{
    public static void Foo(this string s){
       Console.Write(s);
    }
}    

//调用
string s="hello";
s.Foo();

 

拓展方法

标签:class   bsp   str   this   code   额外   foo   col   logs   

原文地址:http://www.cnblogs.com/zhuxiang1633/p/7821368.html

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