我有以下隐式转换运算符:
public static implicit operator InputArgument<T>(T value)
{
return new InputArgument<T>(value);
}
以下是ASP.NET MVC控制器中的代码:
这有效:
InputArgument<string> input = "Something";
这有效:
InputArgument<Controller> input = this;
这有效:
InputArgument<IPrincipal> input = new InputArgument<IPrincipal>(User);
但这不起作用:
InputArgument<IPrincipal> input = User;
最后一个例子给出了错误:
> Cannot implicitly convert type
> 'System.Security.Principal.IPrincipal' to
> 'Engine.InputArgument<System.Security.Principal.IPrincipal>'. An
> explicit conversion exists (are you missing a cast?)
这种隐式转换对IPrincipal不起作用的原因是什么?
答案 0 :(得分:3)
用户定义的转换被指定为而不是在接口上工作。如果他们确实在这样的接口上工作,那么当对象实际实现Bar<IFoo>通过表示更改用户定义的转换转换为IFoo
的情况下结束> IFoo
,这将是令人惊讶的。