C# 语法 ( 扩展方法 )
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 语法 ( 扩展方法 )相关的知识,希望对你有一定的参考价值。
<!-- 扩展方法的声明 --> 注 : 尽量少用
1, 声明一个公共静态的类 public static class 类名 {}
2,在类中声明一个公共静态的方法 ,参数用关键字 this 修饰 如 :
public static string FirstCharToUp(this string s) { return s }
3,调用方法时, 引入命名空间,用String对象直接点出, 如 :
String s = "abcdeg";
s = s.FirstCharToUp();
以上是关于C# 语法 ( 扩展方法 )的主要内容,如果未能解决你的问题,请参考以下文章