ABB.Swum.Nodes.MethodDeclarationNode.ClearSecondaryArguments C# (CSharp) 메소드

ClearSecondaryArguments() 공개 메소드

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