首页 > Windows开发 > 详细

C#_扩展方法

时间:2015-11-26 22:45:22      阅读:238      评论:0      收藏:0      [点我收藏+]

//当一个类不能再修改时,需要添加其他额外的方法---》扩展方法

步骤:1.创建一个静态类  保证该类与要扩展的类在同一个命名空间下

   2.在静态类中创建静态方法  标记静态方法的参数  (this 类型 ob)  this 必不可少  类型为要扩展的类型  ob为将来要引用该扩展方法的对象

技术分享
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace _13扩展方法练习
 8 {
 9     /// <summary>
10     /// Date:2015-11-26
11     /// Author:Xuqingchi
12     /// Version:vs2012
13     /// </summary>
14     class Program
15     {
16         static void Main(string[] args)
17         {
18 
19             //第一步: 创建静态类  
20             //第二步: 创建静态方法(this TestClass ob)
21             TestClass tc1=new TestClass(){Id="Xuqingchi"};
22             tc1.DoSth();
23 
24             //调用扩展方法
25             tc1.DoSthElse();
26 
27         }
28     }
29 
30      public class TestClass
31     {
32 
33         private string _id;
34 
35         public string Id
36         {
37           get { return _id; }
38           set { _id = value; }
39         }
40 
41          public  void DoSth()
42          {
43              Console.WriteLine("testClass do sth...");
44          }
45 
46     }
47 }
调用扩展方法
技术分享
namespace _13扩展方法练习
{
    static class Class1
    {
        //该静态方法的第一个参数  this 是必须得 扩展的对象  obj就表示将来要调用此方法的对象 
        public static void DoSthElse(this TestClass o)
        {
            Console.WriteLine("Do Sth else .^_~ .   {0}",o.Id);
        }
    }
}
创建的静态类

 

C#_扩展方法

原文:http://www.cnblogs.com/siyi/p/4998883.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!