我的 Visual WebPart 的代码隐藏文件中有以下运算符:
public static implicit operator TemplateControl
(ScholarChip.PaymentProcessor.PaymentProcessor.PaymentProcessor target)
{
return ((target == null) ? null : target.TemplateControl);
}
我收到错误:
User-defined conversion must convert to or from the enclosing type
我对上述错误不熟悉。谁能建议我如何纠正它?该代码正在 Sharepoint 2010 Visual WebPart 中使用。
非常感谢:)