Axiom.Compiler.CodeObjectModel.PrologCodeMethod.PrologCodeMethod C# (CSharp) Method

PrologCodeMethod() public method

Initializes a new instance of the PrologCodeMethod class.
public PrologCodeMethod ( string _class, string _assemblyName, int _type, string _methodName ) : System
_class string class type that includes the method.
_assemblyName string assembly name.
_type int method return type.
_methodName string method name.
return System
        public PrologCodeMethod(string _class, string _assemblyName, int _type, string _methodName)
        {
            this._class = _class;
            this._assemblyName = _assemblyName;
            this._type = _type;
            this._methodName = _methodName;
            this._predicateName = _methodName;
            this._arguments = new ArrayList();
        }

Same methods

PrologCodeMethod::PrologCodeMethod ( ) : System
PrologCodeMethod::PrologCodeMethod ( string _class, string _assemblyName, int _type, string _methodName, string _predicateName ) : System
PrologCodeMethod