4 references to mustCastCore
Microsoft.CSharp (4)
Microsoft\CSharp\RuntimeBinder\Semantics\Conversion.cs (3)
525public Expr mustCast(Expr expr, CType dest, CONVERTTYPE flags) => mustCastCore(expr, dest, flags); 1101Expr pTransformedArgument = mustCastCore(pFrom, pTypeFrom, CONVERTTYPE.NOUDC); 1105Expr pCast = mustCastCore(pCall, pTypeDestination, CONVERTTYPE.NOUDC);
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
282allowExplicit ? mustCastCore(op2, op1.Type, 0) : mustConvertCore(op2, op1.Type);