Boo.Lang.Compiler.CompilerErrorFactory.IncompatiblePartialDefinition C# (CSharp) Метод

IncompatiblePartialDefinition() публичный статический Метод

public static IncompatiblePartialDefinition ( Node node, string typeName, string expectedType, string actualType ) : CompilerError
node Node
typeName string
expectedType string
actualType string
Результат CompilerError
        public static CompilerError IncompatiblePartialDefinition(Node node, string typeName, string expectedType, string actualType)
        {
            return Instantiate("BCE0176", node, typeName, expectedType, actualType);
        }
CompilerErrorFactory