ABB.Swum.Nodes.MethodDeclarationNode.MethodDeclarationNode C# (CSharp) Method

MethodDeclarationNode() public method

Creates a new MethodDeclarationNode with the given method name and context.
public MethodDeclarationNode ( string name, MethodContext context ) : System
name string The name of the method.
context MethodContext The method's context.
return System
        public MethodDeclarationNode(string name, MethodContext context)
            : base(name) {
            this.Context = context;
        }

Same methods

MethodDeclarationNode::MethodDeclarationNode ( string name ) : System