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

ClearSecondaryArguments() public method

Clears the list of SecondaryArguments.
public ClearSecondaryArguments ( ) : void
return void
        public void ClearSecondaryArguments() {
            if(this.SecondaryArguments == null) {
                this.SecondaryArguments = new List<ArgumentNode>();
            }
            this.SecondaryArguments.Clear();
        }