ABB.Swum.Nodes.MethodDeclarationNode.ClearSecondaryArguments C# (CSharp) Méthode

ClearSecondaryArguments() public méthode

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