首页 > 代码库 > C# 语法 ( 扩展方法 )

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# 语法 ( 扩展方法 )