博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#的扩展方法
阅读量:6426 次
发布时间:2019-06-23

本文共 1374 字,大约阅读时间需要 4 分钟。

定义和调用扩展方法

  1. 定义一个静态以包含扩展方法。

    该类必须对客户端代码可见。 有关可访问性规则的更多信息,请参见。

  2. 将该扩展方法实现为静态方法,并使其至少具有与包含类相同的可见性。

  3. 该方法的第一个参数指定方法所操作的类型;该参数必须以  修饰符开头。

  4. 在调用代码中,添加一条 using 指令以指定包含扩展方法类的。

  5. 按照与调用类型上的实例方法一样的方式调用扩展方法。

    请注意,第一个参数不是由调用代码指定的,因为它表示正应用运算符的类型,并且编译器已经知道对象的类型。 您只需通过 n 为这两个形参提供实参。

扩展方法的实例 using System.Linq;using System.Text;using System;namespace CustomExtensions{    //Extension methods must be defined in a static class    public static class StringExtension    {        // This is the extension method.        // The first parameter takes the "this" modifier        // and specifies the type for which the method is defined.        public static int WordCount(this String str)        {            return str.Split(new char[] {
' ', '.','?'}, StringSplitOptions.RemoveEmptyEntries).Length; } }}namespace Extension_Methods_Simple{ //Import the extension method namespace. using CustomExtensions; class Program { static void Main(string[] args) { string s = "The quick brown fox jumped over the lazy dog."; // Call the method as if it were an // instance method on the type. Note that the first // parameter is not specified by the calling code. int i = s.WordCount(); System.Console.WriteLine("Word count of s is {0}", i); } }}

转载于:https://www.cnblogs.com/muxueyuan/p/3713079.html

你可能感兴趣的文章
开门人和关门人(杭电1234)
查看>>
万能adapter
查看>>
开发指南专题六:JEECG微云高速开发平台代码生成
查看>>
cocos2d-x 游戏优化方案
查看>>
1.3 Quick Start中 Step 6: Setting up a multi-broker cluster官网剖析(博主推荐)
查看>>
remote desktop connection manager
查看>>
开源库RxJava、ButterKnife
查看>>
JDK内置工具jstack(Java Stack Trace)(转)
查看>>
百度之星 / 初赛第二场 B题
查看>>
Http压测工具wrk使用指南
查看>>
Excel VBA 循环“我中毒了~”
查看>>
CSS 教程Part4 [盒子模型](摘录自 W3C School)
查看>>
android开发技巧
查看>>
五个有趣的拓扑变换问题 [转]
查看>>
asp.net中的比较完美的验证码
查看>>
HDU 3277 Marriage Match III(最大流+二分+并查集)
查看>>
FPSMeter – 简单的、可定制主题的 FPS 仪表库
查看>>
Android应用中使用百度地图API定位自己的位置(二)
查看>>
24点经典算法
查看>>
内核及其组成部分
查看>>