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;
        }