首页 > 代码库 > 扩展方法(from www.sysoft.cc)

扩展方法(from www.sysoft.cc)

namespace 扩展方法{/// /// 1、当前项目添加一个静态类; /// 2、声明静态方法; /// 3、方法参数类型前加this; /// 4、即可通过对应类型变量点出该方法。    ///   public static  class extmethod    {       public static string AddStar(this string str)       {           return str = "★★" + str + "★★";       }    }}

 

扩展方法(from www.sysoft.cc)