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

this() public method

Gets or sets the LogColumn at the given index in this LogColumnCollection.
public this ( int index ) : LogColumn
index int
return LogColumn
        public virtual LogColumn this[int index]
        {
            get
            {
                return (LogColumn) this.List[index];
            }
            set
            {
                this.List[index] = value;
            }
        }