BytesRoad.Diag.NSTraceListeners.Insert C# (CSharp) Method

Insert() public method

Inserts the listener at the specified index.
/// The index is not a valid index in the list. ///
public Insert ( int index, TraceListener listener ) : void
index int /// The zero-based index at which the new /// TraceListener. /// should be inserted. ///
listener System.Diagnostics.TraceListener /// A /// TraceListener /// to insert in the list. ///
return void
        public void Insert(int index, TraceListener listener)
        {
            _listeners.Insert(index, listener);
        }