当前位置:主页 > 软件编程 > .NET代码 >

C# 为String类型增加方法详解

时间:2020-11-19 18:01:02 | 栏目:.NET代码 | 点击:

namespace MyExtensionMethods 
{ 
  public static class MyExtensions 
  { 
    public static int MyGetLength(this System.String target) 
    { 
      return target.Length; 
    } 
  } 
} 

使用时,需要引入这个名字空间,引用如下:

string str = "dafasdf"; 
int len = str.MyGetLength(); 

您可能感兴趣的文章:

相关文章