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

Remove() public method

Removes the first occurrence of a specific LogColumn from this LogColumnCollection.
public Remove ( LogColumn value ) : void
value LogColumn /// The LogColumn value to remove from this LogColumnCollection. ///
return void
        public virtual void Remove(LogColumn value)
        {
            this.List.Remove(value);
        }