Boo.Lang.Compiler.TypeSystem.TypeSystemServices.FindExplicitConversionOperator C# (CSharp) Method

FindExplicitConversionOperator() public method

public FindExplicitConversionOperator ( IType fromType, IType toType ) : IMethod
fromType IType
toType IType
return IMethod
        public IMethod FindExplicitConversionOperator(IType fromType, IType toType)
        {
            return _findExplicitConversionOperator.Invoke(fromType, toType);
        }
TypeSystemServices