NLogViewer.Configuration.LogColumnCollection.AddRange C# (CSharp) Method

AddRange() public method

Adds the elements of an array to the end of this LogColumnCollection.
public AddRange ( LogColumn items ) : void
items LogColumn /// The array whose elements are to be added to the end of this LogColumnCollection. ///
return void
        public virtual void AddRange(LogColumn[] items)
        {
            foreach (LogColumn item in items)
            {
                this.List.Add(item);
            }
        }

Same methods

LogColumnCollection::AddRange ( LogColumnCollection items ) : void