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