Boo.Lang.Compiler.CompilerErrorFactory.CantCastToValueType C# (CSharp) Method

CantCastToValueType() public static method

public static CantCastToValueType ( Node node, IType typeName ) : CompilerError
node Node
typeName IType
return CompilerError
        public static CompilerError CantCastToValueType(Node node, IType typeName)
        {
            return Instantiate("BCE0006", node, typeName);
        }
CompilerErrorFactory