AjScript.Commands.DefineFunctionCommand.DefineFunctionCommand C# (CSharp) 메소드

DefineFunctionCommand() 공개 메소드

public DefineFunctionCommand ( string name, string parameterNames, ICommand body, bool isdefault ) : System
name string
parameterNames string
body ICommand
isdefault bool
리턴 System
        public DefineFunctionCommand(string name, string[] parameterNames, ICommand body, bool isdefault)
        {
            this.name = name;
            this.parameterNames = parameterNames;
            this.body = body;
            this.isdefault = isdefault;
        }