异常信息:The call is ambiguous between the following methods or properties: 'System.Convert.ToString(string)' and 'System.Convert.ToString(bool)'|栈 at CallSite.Target(Closure , CallSite , Type , Object )dynamic类型在运行时会确定类型,Convert.ToString()方法的时候应该会明确类型,为何会报不确定调用重载方法的异常?请大佬提携~
1 回答
函数式编程
TA贡献1807条经验 获得超9个赞
dynamic
类型是在运行时确定类型,所以Convert.ToString(dynamic)
时编译是可以通过的,但是当程序跑起来的时候Convert.ToString()
函数接受的是确定类型的参数,是不能传入dynamic类型的。
添加回答
举报
0/150
提交
取消