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

(73)C# 扩展方法

时间:2020-04-30 21:06:23      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:stat   ons   lin   static   静态类   nbsp   OLE   fun   code   

 

扩展方法的要求:

1.扩展方法要求在一个静态类中

2.扩展方法本身也是静态方法

3.扩展方法第一个参数是    [this 要扩展的类 参数名称]

    public class Program
    {
        static void Main()
        {
            int a = 10;
            int b=a.fun();
            Console.WriteLine(b);
        }
    }

    public static class A
    {
        public static int fun(this int num)
        {
            return num * 2;
        }
    }

 

(73)C# 扩展方法

标签:stat   ons   lin   static   静态类   nbsp   OLE   fun   code   

原文地址:https://www.cnblogs.com/buchizaodian/p/12811001.html

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