7 references to canConvert
Microsoft.CSharp (7)
Microsoft\CSharp\RuntimeBinder\Semantics\Binding\Better.cs (2)
458bool a2b = canConvert(p1, p2); 459bool b2a = canConvert(p2, p1);
Microsoft\CSharp\RuntimeBinder\Semantics\Conversion.cs (2)
316bool f12 = canConvert(type1, type2); 317bool f21 = canConvert(type2, type1);
Microsoft\CSharp\RuntimeBinder\Semantics\MethodTypeInferrer.cs (3)
1649if (pBound != pCandidate && !_binder.canConvert(pBound, pCandidate)) 1667if (pBound != pCandidate && !_binder.canConvert(pCandidate, pBound)) 1687if (pCandidate != pCandidate2 && !_binder.canConvert(pCandidate2, pCandidate))