C#之扩展方法的实现--学习笔记
时间:2011-03-04 来源:Fransic
1、必须定义的是静态方法;
2、必须把Class定义在参数列表中,并使用this关键字;
示例:扩展Control的ToHtml()方法的定义规则
public class test
{
public static string ToHtml(this Control control)
{
return string.Empty;
}
}
相关阅读 更多 +
时间:2011-03-04 来源:Fransic
1、必须定义的是静态方法;
2、必须把Class定义在参数列表中,并使用this关键字;
示例:扩展Control的ToHtml()方法的定义规则
public class test
{
public static string ToHtml(this Control control)
{
return string.Empty;
}
}