BytesRoad.Diag.NSTraceListeners.RemoveAt C# (CSharp) Метод

RemoveAt() публичный Метод

Removes from the collection the TraceListener at the specified index.
/// The index is not a valid index in the list. ///
public RemoveAt ( int index ) : void
index int /// The zero-based index of the /// TraceListener /// to remove from the list. ///
Результат void
        public virtual void RemoveAt(int index)
        {
            _listeners.RemoveAt(index);
        }
    }