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

Insert() public method

Inserts an element into the LogColumnCollection at the specified index
public Insert ( int index, LogColumn value ) : void
index int /// The index at which the LogColumn is to be inserted. ///
value LogColumn /// The LogColumn to insert. ///
return void
        public virtual void Insert(int index, LogColumn value)
        {
            this.List.Insert(index, value);
        }