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

MultipleBaseTypeConstraints() public static method

public static MultipleBaseTypeConstraints ( GenericParameterDeclaration gpd, TypeReference type, TypeReference other ) : CompilerError
gpd GenericParameterDeclaration
type TypeReference
other TypeReference
return CompilerError
        public static CompilerError MultipleBaseTypeConstraints(GenericParameterDeclaration gpd, TypeReference type, TypeReference other)
        {
            return Instantiate("BCE0163", type, gpd.Name, type, other);
        }
CompilerErrorFactory