一、拓展方法的使用
static class 自定义拓展类名
{
public static 返回值 拓展名(this 序拓展的类名 拓展类的实例)
{
return 返回值;
}
}
例
public static class MyExtensions
{
// 拓展方法的定义
public static string Reverse(this string str)
{
char[] charArray = str.ToCharArray();
Array.Reverse(charArray);
return new string(charArray);
}
}
留言