当我们操作一个系统类型的时候 经常需要对它进行多行代码操作,就可以把操作代码的写成这个类型的的扩展方法,这样下次就可以直接用.(点)调出这个方法。
比如 对字符串进行解析成为int类型:
public static class StringUtile
{
public static int ToInt(this string str)
{
int temp = 0;
int.TryParse(str, out temp);
return temp;
}
}
使用: string str = "123";
int number = str.ToInt(); 直接用点既可以使用了
注意:类和方法都要是静态的